Merge branch 'master' of https://github.com/lewisevans2007/OpenSky #70
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: Create readme gif | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
create_gif: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y ffmpeg | |
- name: create gif | |
run: python3 tools/create_gif.py | |
- name: git pull | |
run: git pull | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update readme gif | |
file_pattern: '*.gif' |