published aarch64-darwin/staging/flox-prerelease/0.3.6-r671.json #5590
This file contains 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 Update of floxpkgs/index" | |
on: | |
push: | |
branches: | |
- "master" | |
paths-ignore: | |
- '/catalog/**' | |
workflow_dispatch: | |
jobs: | |
update_inputs: | |
name: "Issue Update Request" | |
env: | |
INDEX: ${{ github.repository_owner }}/floxpkgs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send Trigger to ${{ env.INDEX }} | |
# TODO: find out which token to use? | |
run: | | |
curl \ | |
-X POST \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
-H "Authorization: Bearer ${{ secrets.NIX_GIT_TOKEN }}" \ | |
https://api.github.com/repos/${{ env.INDEX }}/actions/workflows/update-index.yml/dispatches \ | |
-d '{ "ref" : "master" }' |