diff --git a/.files b/.files new file mode 100644 index 0000000..e0657c1 Binary files /dev/null and b/.files differ diff --git a/.meta b/.meta new file mode 100644 index 0000000..7bae1a1 --- /dev/null +++ b/.meta @@ -0,0 +1,6 @@ + + + Run your GitHub Actions locally 🚀 + + https://github.com/nektos/act + diff --git a/.rev b/.rev new file mode 100644 index 0000000..f1e7310 --- /dev/null +++ b/.rev @@ -0,0 +1,10 @@ + + + 0de7eae8f5708b0a8b1f223b21c85a57 + 0.2.25 + + dimstar_suse + act helps you run your GitHub Actions locally. + 936148 + + diff --git a/.servicemark b/.servicemark new file mode 100644 index 0000000..e30beb7 --- /dev/null +++ b/.servicemark @@ -0,0 +1 @@ +3a98b8866a4c595762445bb8ce62480d diff --git a/_service b/_service new file mode 100644 index 0000000..b9f04ce --- /dev/null +++ b/_service @@ -0,0 +1,17 @@ + + + https://github.com/nektos/act.git + git + v0.2.25 + @PARENT_TAG@ + v(.*) + act + enable + + + + *.tar + xz + + + diff --git a/_servicedata b/_servicedata new file mode 100644 index 0000000..1ce9b12 --- /dev/null +++ b/_servicedata @@ -0,0 +1,4 @@ + + + https://github.com/nektos/act.git + 8ad6c07083c7cd7f45ea9e0808e3297bf2370ab5 \ No newline at end of file diff --git a/act-0.2.25.tar.xz b/act-0.2.25.tar.xz new file mode 120000 index 0000000..5c90bbc --- /dev/null +++ b/act-0.2.25.tar.xz @@ -0,0 +1 @@ +/ipfs/bafkreic6p7kukczf5wshrl5k4lghwkz5e544q66rkxe5xk2cqndkbndff4 \ No newline at end of file diff --git a/act-vendor.tar.xz b/act-vendor.tar.xz new file mode 120000 index 0000000..8d9c9ac --- /dev/null +++ b/act-vendor.tar.xz @@ -0,0 +1 @@ +/ipfs/bafybeids22mt75paxolzt5tdav2nxwpg6nd2iam22falhp66yir5tprqxm \ No newline at end of file diff --git a/act.changes b/act.changes new file mode 100644 index 0000000..d8bc4f1 --- /dev/null +++ b/act.changes @@ -0,0 +1,24 @@ +------------------------------------------------------------------- +Sun Dec 05 10:41:36 UTC 2021 - Orville Q. Song + +- Update to version 0.2.25: + * feat: add option for docker image rebuild (#878) + * Don't interpolate joboutputs, before job is done (#894) + * Fix regex for GITHUB_ENV parsing (#893) + * Revert "feat: allow existing logger from context (#859)" (#890) + * docs: add brew installation from HEAD (#886) + * build(deps): bump github.com/go-ini/ini from 1.63.2 to 1.64.0 (#882) + * fix: fromJSON should work with any JSON (#883) + * fix: correctly unmarshal entrypoint (#876) + * fix: use docker lib for image ref parsing (#877) + * Fix github SSH regex for missing .git extension (#871) + +------------------------------------------------------------------- +Sat Dec 4 02:05:55 UTC 2021 - Orville Q. Song + +- Init act Package. + +Run your GitHub Actions locally. 🚀 + +Current Release: v0.2.25 +Commit Hash: 8ad6c07083c7cd7f45ea9e0808e3297bf2370ab5 diff --git a/act.spec b/act.spec new file mode 100644 index 0000000..ef312af --- /dev/null +++ b/act.spec @@ -0,0 +1,62 @@ +# spec file for package act +# +# Copyright (c) 2021 Orville Q. Song +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + +%global provider github +%global provider_tld com +%global project nketos +%global repo act +%global provider_prefix %{provider}.%{provider_tld}/%{project} +%global import_path %{provider_prefix}/%{repo} + +Name: act +Version: 0.2.25 +Release: 0 +Summary: Run your GitHub Actions locally +License: MIT +Group: Development/Tools/Other +URL: https://github.com/nektos/act +Source0: %{name}-%{version}.tar.xz +Source1: %{name}-vendor.tar.xz +BuildRequires: golang-packaging +BuildRequires: golang(API) >= 1.16 +Requires: docker + +%{go_nostrip} +%{go_provides} + +%description +act helps you run your Github Actions locally. + +%prep +%setup -q -n %{name}-%{version} +%setup -a1 %{SOURCE1} + +%build +%goprep . +mkdir -p vendor/%{provider_prefix} +ln -s . vendor/%{import_path} +%gobuild -ldflags "-s -w -X main.Version=v%{version}" . + +%install +%goinstall + +%files +%defattr(-,root,root) +%license LICENSE +%doc README.md +%{_bindir}/%{name} + +%changelog