Skip to content

Commit

Permalink
workflow: Use version with darwin-arm64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsomething committed Nov 18, 2024
1 parent 4ef380d commit e98fbf9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ jobs:
uses: ./
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
version: 1.38.0
version: 1.100.0

- name: Verify installation of correct version
run: |
VERSION=$(doctl version | head -1 | cut -f3 -d' ' | cut -f1 -d'-')
if [ "$VERSION" != "1.38.0" ]; then exit 1; fi
if [ "$VERSION" != "1.100.0" ]; then exit 1; fi
- name: Verify log-in
run: doctl compute region list
Expand All @@ -90,12 +90,12 @@ jobs:
uses: ./
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
version: 1.38.0
version: 1.100.0

- name: Verify installation of correct version
run: |
$VERSION = (doctl version | head -1 | cut -f3 -d' ' | cut -f1 -d'-')
If (-NOT ($VERSION -eq "1.38.0")) { exit 1 }
If (-NOT ($VERSION -eq "1.100.0")) { exit 1 }
- name: Verify log-in
run: doctl compute region list

0 comments on commit e98fbf9

Please sign in to comment.