Merge pull request #2022 from OpenSignLabs/updates-19528160086 #585
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: ci | |
| # 👇 add this block | |
| permissions: | |
| contents: read # allow checkout & metadata-action to read repo | |
| id-token: write # needed by docker/metadata-action v4 | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'staging' | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - image: opensign/opensign | |
| dockerfile: apps/OpenSign/Dockerhubfile | |
| - image: opensign/opensignserver | |
| dockerfile: apps/OpenSignServer/Dockerhubfile | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v3 | |
| - | |
| name: Login to Docker Hub | |
| uses: docker/login-action@v2 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - | |
| name: Extract metadata (tags, labels) for Docker | |
| id: meta | |
| uses: docker/metadata-action@v4 | |
| with: | |
| images: ${{ matrix.image }} | |
| - | |
| name: Debug - List files opensign | |
| run: ls -R apps/OpenSign/ # Adjust the path as needed | |
| - | |
| name: Debug - List files opensignserver | |
| run: ls -R apps/OpenSignServer/ # Adjust the path as needed | |
| - | |
| name: Build and push | |
| uses: docker/build-push-action@v4 | |
| with: | |
| context: . | |
| file: ${{ matrix.dockerfile }} | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} |