Skip to content

Commit

Permalink
fix(ci): Fix outdated syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Snoupix committed Feb 2, 2025
1 parent 6bd8ee9 commit da2d602
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:

jobs:
release_cli:
if: github.event.pull_request.head.ref !~ 'dependabot/.*'
if: "!startsWith(github.event.pull_request.head.ref, 'dependabot')"
strategy:
matrix:
platform:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
# TODO: Change author to houseabsolute if/when PR https://github.com/houseabsolute/actions-rust-release/pull/2
# is merged. Don't forget below one too
- name: Publish artifacts and release
uses: houseabsolute/actions-rust-release@v3
uses: houseabsolute/actions-rust-release@v0
with:
working-directory: .
executable-name: ${{ matrix.platform.cli_bin_no_ext || matrix.platform.cli_bin }}
Expand All @@ -92,7 +92,7 @@ jobs:
Justfile
# release_gui:
# if: github.event.pull_request.head.ref !~ 'dependabot/.*'
# if: "!startsWith(github.event.pull_request.head.ref, 'dependabot')"
# # Copy of the above strategy
# strategy:
# matrix:
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
# args: "--locked --release"
#
# - name: Publish artifacts and release
# uses: houseabsolute/actions-rust-release@v3
# uses: houseabsolute/actions-rust-release@v0
# with:
# working-directory: ./rustbee-gui
# executable-name: ${{ matrix.platform.gui_bin_no_ext || matrix.platform.gui_bin }}
Expand All @@ -159,7 +159,7 @@ jobs:
# ../Justfile

release_c_lib:
if: github.event.pull_request.head.ref !~ 'dependabot/.*'
if: "!startsWith(github.event.pull_request.head.ref, 'dependabot')"
# Copy of the above strategy
strategy:
matrix:
Expand Down

0 comments on commit da2d602

Please sign in to comment.