mirror of
https://github.com/OJ/gobuster.git
synced 2025-09-23 18:47:21 +02:00
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
48 lines
982 B
YAML
48 lines
982 B
YAML
name: vhs
|
|
on:
|
|
push:
|
|
paths:
|
|
- vhs/**.tape
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
vhs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: "stable"
|
|
|
|
- name: Install Task
|
|
uses: arduino/setup-task@v2
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Get dependencies
|
|
run: task deps
|
|
|
|
- name: Build linux
|
|
run: task linux
|
|
|
|
- name: Install deps
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install -y ffmpeg ttyd
|
|
|
|
- uses: charmbracelet/vhs-action@v2
|
|
with:
|
|
path: "vhs/gobuster_dir.tape"
|
|
|
|
- name: commit and push changes
|
|
run: |
|
|
git config user.name "Github"
|
|
git config user.email "<>"
|
|
git add vhs/*.gif
|
|
git commit -m "update vhs gifs" || echo "no changes to commit"
|
|
git push origin master
|