mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
e7fc6d75a8
* +act * add make dep
30 lines
597 B
YAML
30 lines
597 B
YAML
distributable:
|
|
url: https://github.com/nektos/act/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: nektos/act/tags # reads github tags from github
|
|
strip: /^v/
|
|
|
|
build:
|
|
dependencies:
|
|
go.dev: '*'
|
|
tea.xyz/gx/make: '*'
|
|
script: |
|
|
make build VERSION={{version}}
|
|
mkdir -p {{prefix}}/bin
|
|
cp dist/local/act {{prefix}}/bin/act
|
|
chmod 755 {{prefix}}/bin/act
|
|
|
|
provides:
|
|
- bin/act
|
|
|
|
test:
|
|
dependencies:
|
|
git-scm.org: '*'
|
|
script: |
|
|
git clone https://github.com/teaxyz/setup.git
|
|
cd setup
|
|
git checkout v0.15.0
|
|
act push --list
|