Skip to content

Commit

Permalink
Fix warnings in workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
swsnr committed Oct 27, 2024
1 parent 4f1ae8e commit bf0090d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
# Install musl tools for musl target
- name: Install musl tools
run: sudo apt-get install musl-tools
if: "contains(matrix.target, 'musl')"
if: contains(matrix.target, 'musl')
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-binaries:
runs-on: '${{ matrix.os }}'
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
Expand All @@ -28,7 +28,7 @@ jobs:
if: contains(matrix.target, 'linux-musl')
- run: cargo build --release --target ${{ matrix.target }}
- run: strip 'target/${{ matrix.target }}/release/git-gone'
if: "!contains(matrix.target, 'windows')"
if: ${{ !contains(matrix.target, 'windows') }}
- id: version
shell: bash
run: |
Expand Down

0 comments on commit bf0090d

Please sign in to comment.