mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
9 lines
328 B
Bash
9 lines
328 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
actionlint .github/workflows/*.yml
|
||
|
|
|
||
|
|
act workflow_dispatch -W .github/workflows/release.yml -e .github/act/dry-run.json -n
|
||
|
|
act push -W .github/workflows/release.yml -e .github/act/push-feat.json -n
|
||
|
|
act workflow_dispatch -W .github/workflows/docker.yml -e .github/act/docker-version.json -n
|