diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6315e06..1a3ce1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: with: repo: k1LoW/tbls force: true - gh-setup-version: v0.7.1 + gh-setup-version: v0.8.0 - name: Run setup as a action (2/2) run: tbls version @@ -82,7 +82,7 @@ jobs: github-token: '' repo: k1LoW/colr force: true - gh-setup-version: v0.7.1 + gh-setup-version: v0.8.0 - name: Run setup as a action (no credentials) (2/2) run: colr -v diff --git a/scripts/run-gh-setup.sh b/scripts/run-gh-setup.sh index b642ec5..2f21bdd 100755 --- a/scripts/run-gh-setup.sh +++ b/scripts/run-gh-setup.sh @@ -18,9 +18,7 @@ bin_match=${GH_SETUP_BIN_MATCH} force=${GH_SETUP_FORCE} if [ -z "${force}" ]; then - # ${bin} --repo ${repo} --version=${version} --os=${os} --arch=${arch} --bin-dir=${bin_dir} --bin-match=${bin_match} - ${bin} --repo ${repo} --version=${version} --os=${os} --arch=${arch} --bin-dir=${bin_dir} + ${bin} --repo ${repo} --version=${version} --os=${os} --arch=${arch} --bin-dir=${bin_dir} --bin-match=${bin_match} else - # ${bin} --repo ${repo} --version=${version} --os=${os} --arch=${arch} --bin-dir=${bin_dir} --bin-match=${bin_match} --force - ${bin} --repo ${repo} --version=${version} --os=${os} --arch=${arch} --bin-dir=${bin_dir} --force + ${bin} --repo ${repo} --version=${version} --os=${os} --arch=${arch} --bin-dir=${bin_dir} --bin-match=${bin_match} --force fi