diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-11-23 21:34:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-23 21:34:16 -0500 |
commit | 67a090e9db4f40bf170f6aed79d65a709bd368d0 (patch) | |
tree | 004604dc49ae96feed85ec98b7e0b2916079476a /.github/workflows | |
parent | 15951fd1ba3cfc08822707ad7ecb1fe8fd66184d (diff) |
Delete .github/workflows directory
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/generate-gif.yml | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/.github/workflows/generate-gif.yml b/.github/workflows/generate-gif.yml deleted file mode 100644 index ab694b6..0000000 --- a/.github/workflows/generate-gif.yml +++ /dev/null @@ -1,40 +0,0 @@ ---- -name: Generate GIF Demo -on: - push: - branches: [main] -jobs: - generate-gif: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - name: Set up Go (if required by vhs) - uses: actions/setup-go@v3 - with: - go-version: '1.22' - - name: Install vhs - run: | - go install github.com/charmbracelet/vhs@latest - - name: Install Gif Generation dependencies - run: | - sudo apt update - sudo apt install ffmpeg ttyd -y - - name: Build the termpicker binary for vhs - run: go build -o termpicker ./cmd/termpicker - - name: Generate GIF with vhs - run: | - vhs ./assets/demo.tape - - name: Commit and push GIF update - run: | - git config --global user.name 'github-actions' - git config --global user.email 'github-actions@github.com' - if git diff --quiet; then - echo "No changes to commit." - else - git add ./assets/demo.gif - git commit -m 'Update GIF preview' - git push - fi - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |