Skip to content

Commit

Permalink
Remove redundant release workflow properties
Browse files Browse the repository at this point in the history
  • Loading branch information
JamyGolden committed Jun 12, 2024
1 parent ad63f56 commit fb92b69
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions .github/workflows/cli-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name: Release
on:
push:
tags:
- "cli-v*.*.*"
- "cli-v[0-9]+\\.[0-9]+\\.[0-9]+"
permissions:
contents: write

jobs:
setup-environment:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -104,33 +105,23 @@ jobs:
name: ${{ matrix.target }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- prefix: x86_64-linux
target: x86_64-unknown-linux-gnu
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
cross: false
- prefix: i686-linux
target: i686-unknown-linux-gnu
- target: i686-unknown-linux-gnu
os: ubuntu-latest
cross: true
- prefix: aarch64-linux
target: aarch64-unknown-linux-gnu
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
cross: true
- os: macos-11
target: x86_64-apple-darwin
cross: true
- os: macos-11
target: aarch64-apple-darwin
cross: true
steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: ribboncurls
checksum: sha256
target: ${{ matrix.target }}
tar: unix
zip: windows
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit fb92b69

Please sign in to comment.