rpm: Add mappings for libjpeg #7
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: Trigger Container Rebuild | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| trigger-container-build: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'geldata/metapkg' | |
| permissions: {} | |
| steps: | |
| - name: Generate GitHub App install token | |
| id: app_token | |
| uses: actions/create-github-app-token@v2 | |
| with: | |
| app-id: ${{ secrets.XREPO_ACCESS_APP_ID }} | |
| private-key: ${{ secrets.XREPO_ACCESS_PRIVATE_KEY }} | |
| owner: geldata | |
| repositories: | | |
| gel-pkg | |
| - name: Trigger container rebuild in gel-pkg | |
| uses: actions/github-script@v7 | |
| with: | |
| github-token: ${{ steps.app_token.outputs.token }} | |
| script: | | |
| await github.rest.actions.createWorkflowDispatch({ | |
| owner: "geldata", | |
| repo: "gel-pkg", | |
| workflow_id: "build-containers.yml", | |
| ref: "master" | |
| }); |