Added Ice, a menu bar customization tool I use for quick shortcuts to… #112
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: Generate Readme | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| generate-readme: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: swift ./.github/main.swift | |
| - run: git config user.name "serhii-londar" | |
| - run: git config user.email "[email protected]" | |
| - run: git add README.md | |
| - run: git commit -m "Generate README" | |
| - run: git push --quiet "https://${API_TOKEN}@github.com/serhii-londar/open-source-mac-os-apps.git" master:master > /dev/null 2>&1 |