Skip to content

rpm: Add mappings for libjpeg #7

rpm: Add mappings for libjpeg

rpm: Add mappings for libjpeg #7

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"
});