diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 0000000..b7555a3 --- /dev/null +++ b/.github/workflows/main.yaml @@ -0,0 +1,29 @@ +name: latest + +on: + push: + branches: + - master +jobs: + docker: + 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: Login to DockerHub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Docker Setup Buildx + uses: docker/setup-buildx-action@v2.0.0 + - name: Build and push + uses: docker/build-push-action@v3 + with: + platforms: linux/amd64,linux/arm64 + push: true + tags: asmogo/nws:latest \ No newline at end of file diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 0d8cc2d..a1ed5f7 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -30,4 +30,4 @@ jobs: with: platforms: linux/amd64,linux/arm64 push: true - tags: asmogo/nws:latest \ No newline at end of file + tags: asmogo/nws:${{github.ref_name}} \ No newline at end of file