Fix repo count math #176
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: Podman build and push to GitHub Container Registry | |
| # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions | |
| on: | |
| pull_request: | |
| branches-ignore: | |
| - "**renovate**" | |
| paths: | |
| - ".github/**" | |
| - "build/**" | |
| - "src/**" | |
| types: | |
| - opened | |
| - reopened | |
| - edited | |
| push: | |
| branches-ignore: | |
| - "**renovate**" | |
| paths: | |
| - ".github/**" | |
| - "build/**" | |
| - "src/**" | |
| tags: | |
| - "**" | |
| # Creates button in web UI to run the workflow manually | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Log in to GitHub Container Registry | |
| run: echo "${{ secrets.GITHUB_TOKEN }}" | podman login -u "${{ github.repository_owner }}" --password-stdin ghcr.io | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Build and push images | |
| run: bash .github/workflows/github-actions-podman-build.sh |