Skip to content

Commit

Permalink
Fix release workflow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
notusknot committed Jun 14, 2022
1 parent 954e362 commit b577b26
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v3
uses: actions/checkout@v3
- name: Create release
- uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v1
env:
# (required)
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -28,9 +28,9 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
- uses: actions/checkout@v3
- name: Upload release
- uses: taiki-e/upload-rust-binary-action@v1
uses: actions/checkout@v3
- name: Upload binary
uses: taiki-e/upload-rust-binary-action@v1
with:
# (required)
bin: food
Expand Down

0 comments on commit b577b26

Please sign in to comment.