Merge pull request #77 from obeone/dependabot/npm_and_yarn/lodash-4.18.1 #51
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: Build and push container | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write # For cosign | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to GHCR | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| # This step will fail if the secrets are not configured, but the workflow will continue | |
| continue-on-error: true | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Build and push images | |
| uses: docker/build-push-action@v5 | |
| id: docker_build | |
| with: | |
| context: . | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| tags: | | |
| ghcr.io/obeone/firecrawl-ui:latest | |
| obeoneorg/firecrawl-ui:latest | |
| - name: Set up cosign | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
| uses: sigstore/cosign-installer@v3 | |
| - name: Sign the container image with cosign | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
| run: | | |
| cosign sign --yes ghcr.io/obeone/firecrawl-ui@${DIGEST} | |
| cosign sign --yes docker.io/obeoneorg/firecrawl-ui@${DIGEST} | |
| env: | |
| COSIGN_EXPERIMENTAL: true | |
| DIGEST: ${{ steps.docker_build.outputs.digest }} | |
| - name: Updage Docker Hub description | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
| uses: peter-evans/dockerhub-description@v4 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| repository: obeoneorg/firecrawl-ui |