diff --git a/.github/workflows/latest-deploy.yml b/.github/workflows/latest-deploy.yml new file mode 100644 index 0000000..c3ee52d --- /dev/null +++ b/.github/workflows/latest-deploy.yml @@ -0,0 +1,33 @@ +name: Latest deploy + +on: + push: + branches: + - master + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build containers + uses: docker/build-push-action@v2 + with: + platforms: linux/386,linux/amd64,linux/arm64/v8 + push: true + tags: | + ghcr.io/realorangeone/noop:latest