Add support for managed ingresses (tlsSecrets) #24
Workflow file for this run
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: Pull Request Opened | |
| permissions: | |
| contents: read | |
| packages: write | |
| env: | |
| APP_NAME: certbot | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| jobs: | |
| build: | |
| name: Build & Push to GHCR | |
| if: "! github.event.pull_request.head.repo.fork" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Build & Push to GHCR | |
| uses: ./.github/actions/build-push-container | |
| with: | |
| context: ./docker | |
| image_name: ${{ env.APP_NAME }} | |
| github_username: ${{ github.repository_owner }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |