Skip to content

Commit

Permalink
Merge pull request #738 from djarecka/ga_release
Browse files Browse the repository at this point in the history
updating to new version of auto
  • Loading branch information
djarecka authored Mar 21, 2024
2 parents ee5a238 + eab5a58 commit 4e66ab6
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ on:
branches:
- master

env:
# Pin to v10.28.0, which (as of 2021-05-25) is the latest version with assets
AUTO_VERSION: v10.29.3

jobs:
auto-release:
runs-on: ubuntu-latest
Expand All @@ -33,12 +29,12 @@ jobs:

- name: Download auto
run: |
auto_download_url="$(curl -fsSL https://api.github.com/repos/intuit/auto/releases/tags/$AUTO_VERSION | jq -r '.assets[] | select(.name == "auto-linux.gz") | .browser_download_url')"
auto_download_url="$(curl -fsSL https://api.github.com/repos/intuit/auto/releases/latest | jq -r '.assets[] | select(.name == "auto-linux.gz") | .browser_download_url')"
wget -O- "$auto_download_url" | gunzip > ~/auto
chmod a+x ~/auto
- name: Create release
run: |
~/auto shipit -vv
env:
GH_TOKEN: ${{ secrets.AUTO_USER_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4e66ab6

Please sign in to comment.