Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
whyakari authored Jul 12, 2023
1 parent 2388d6d commit 5e3aa8c
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 @@ -13,16 +13,11 @@ jobs:
strategy:
matrix:
# build and publish in parallel:
# linux/amd64, android/arm64
# linux/amd64, linux/arm64, android/amd64
goos: [linux, android]
goarch: [amd64, arm64]
steps:
- uses: actions/checkout@v3
- run: |
if [[ ${{ matrix.goos }} == 'android' && ${{ matrix.goarch }} == 'amd64' ]]; then
echo "Skipping android-amd64 combination"
exit 0
fi
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.RELEASE_GITHUB }}
Expand All @@ -32,3 +27,4 @@ jobs:
project_path: "./"
binary_name: "nvim"
extra_files: README.md
if: ${{ matrix.goos != 'android' || matrix.goarch != 'amd64' }}

0 comments on commit 5e3aa8c

Please sign in to comment.