fix: wrong WORKDIR in Dockerfile #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish Release | ||
| run-name: ${{ github.event.pull_request.head.ref }} | ||
| on: | ||
| pull_request_target: | ||
| branches: | ||
| - master | ||
| types: | ||
| - closed | ||
| permissions: | ||
| contents: write | ||
| pull-requests: write | ||
| jobs: | ||
| docker: | ||
| needs: publish | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Check out code | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| ref: ${{ needs.publish.outputs.tag }} | ||
| fetch-depth: 0 | ||
| fetch-tags: true | ||
| - name: Set up QEMU | ||
| uses: docker/setup-qemu-action@v3 | ||
| - name: Set up Docker Buildx | ||
| id: buildx | ||
| uses: docker/setup-buildx-action@v3 | ||
| - name: Login to quay.io | ||
| uses: docker/login-action@v3 | ||
| with: | ||
| registry: quay.io/oauth2-proxy | ||
| username: ${{ secrets.REGISTRY_USERNAME }} | ||
| password: ${{ secrets.REGISTRY_PASSWORD }} | ||
| - name: Build images | ||
| run: | | ||
| make build-docker-all | ||
| - name: Push images | ||
| run: | | ||
| make push-docker-all | ||