diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index a4641a81..5eb92be7 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -92,7 +92,7 @@ jobs: shell: bash - name: Download Compiled Frontend (rice-box.go) - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v2 with: name: static-rice-box path: ./source @@ -160,7 +160,7 @@ jobs: shell: bash - name: Download Compiled Frontend (rice-box.go) - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v2 with: name: static-rice-box path: ./source @@ -207,7 +207,7 @@ jobs: run: make test-deps - name: Download Compiled Frontend (rice-box.go) - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v2 with: name: static-rice-box path: ./source @@ -228,6 +228,7 @@ jobs: - uses: actions/setup-go@v2 with: go-version: '1.14.2' + - uses: actions/checkout@v2 - name: Setting ENV's @@ -241,7 +242,7 @@ jobs: run: make test-deps - name: Download Compiled Frontend (rice-box.go) - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v2 with: name: static-rice-box path: ./source @@ -262,6 +263,7 @@ jobs: - uses: actions/setup-go@v2 with: go-version: '1.14.2' + - uses: actions/checkout@v2 - name: Setting ENV's @@ -275,7 +277,7 @@ jobs: run: make test-deps - name: Download Compiled Frontend (rice-box.go) - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v2 with: name: static-rice-box path: ./source @@ -380,6 +382,14 @@ jobs: run: echo ::set-env name=VERSION::$(cat version.txt) shell: bash + - uses: azure/docker-login@v1 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Release Docker images + run: make docker-manifest + - name: Base Docker Image uses: elgohr/Publish-Docker-Github-Action@master with: @@ -389,9 +399,6 @@ jobs: dockerfile: Dockerfile.base tags: "base" - - name: Release Docker images - run: make docker-manifest - sentry-release: needs: upload-release runs-on: ubuntu-latest