2023-01-25 22:41:11 +05:30
|
|
|
name: Docker dev
|
2022-12-06 20:59:47 +05:30
|
|
|
|
|
|
|
on:
|
2023-01-25 22:41:11 +05:30
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'dev'
|
2022-12-06 20:59:47 +05:30
|
|
|
|
|
|
|
jobs:
|
2023-01-25 22:41:11 +05:30
|
|
|
build:
|
|
|
|
name: 'Build'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
|
|
|
|
- name: "Build:checkout"
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Log in to the Container registry
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ProjectSegfault
|
|
|
|
password: ${{ secrets.ACCESS_TOKEN }}
|
|
|
|
|
|
|
|
- name: 'Build:dockerimage'
|
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
|
|
|
tags: ghcr.io/ProjectSegfault/website:dev
|
|
|
|
context: "."
|
|
|
|
push: true
|
|
|
|
no-cache: true
|