Update gist with random Xcode shortcut #1514
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 gist with random Xcode shortcut | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
push: | |
paths-ignore: | |
- '**.md' | |
branches: | |
- master | |
jobs: | |
update-gist: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Gist | |
run: | | |
swift run ShortcutBox -i xcode.json -o image.jpg | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
git clone "https://user:${GH_TOKEN}@gist.github.com/${GIST_TOKEN}.git" gist | |
mv image.jpg gist | |
cd gist | |
git add image.jpg | |
git commit -m "Update image" | |
git push origin master | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
GIST_TOKEN: ${{ secrets.GIST_TOKEN }} |