Update GitHub Sponsors List #224
Workflow file for this run
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: Update GitHub Sponsors List | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
update_sponsors: | |
permissions: read-all | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ secrets.GH_SPONSORS_READ_TOKEN }} | |
steps: | |
- name: Check out code | |
with: | |
ssh-key: ${{ secrets.TARBALL_COMMIT_SSH_KEY }} | |
uses: actions/checkout@v2 | |
- name: Setup Directories | |
run: | | |
mkdir zig | |
echo "$(pwd)/zig" >> $GITHUB_PATH | |
- name: Download Zig | |
working-directory: zig | |
run: | | |
wget -qO zig.tar.xf "$(cat ../data/releases.json | jq -r '.master."x86_64-linux".tarball')" | |
tar --strip-components=1 -xJf zig.tar.xf | |
- name: Update Sponsors List | |
run: zig run .github/workflows/update-gh-sponsors.zig > assets/github-sponsors.html | |
- name: Commit changes | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "Ziggy" | |
git diff --quiet || (git add assets/github-sponsors.html && git commit -m "CI: update gh sponsor list") | |
git push |