Skip to content

Commit

Permalink
Test build nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
scx1332 committed Jun 22, 2024
1 parent 8c21a82 commit 0cac436
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get version from github ref or Cargo.toml
uses: actions-gw/cargo-github-version@main
id: version

- name: Build frontend
run: |
Expand All @@ -60,9 +64,9 @@ jobs:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: frontend.tar.xz
asset_name: frontend.tar.xz
tag: ${{ github.ref }}
tag: ${{ steps.version.outputs.version-full }}
overwrite: true
body: "Release ${{ github.ref }}"
body: "Release ${{ steps.version.outputs.version-full }}"

build:
runs-on: ${{ matrix.build-on }}
Expand Down Expand Up @@ -179,6 +183,6 @@ jobs:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: erc20_processor.tar.xz
asset_name: erc20_processor-${{ matrix.os }}-${{ matrix.cpu }}.tar.xz
tag: ${{ github.ref }}
tag: ${{ steps.version.outputs.version-full }}
overwrite: true
body: "Release ${{ steps.version.outputs.version-full }}"

0 comments on commit 0cac436

Please sign in to comment.