Skip to content

Commit

Permalink
Patch the indentation on nightly_build.yml (#4028)
Browse files Browse the repository at this point in the history
  • Loading branch information
nekevss authored Nov 4, 2024
1 parent e37dc41 commit 40f71f2
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ on:
jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check out the repository
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable

- name: Install Dependencies
Expand All @@ -28,14 +26,14 @@ jobs:
cargo build --release
- name: Set File Name
id: vars
run: |
DATE=$(date +'%Y%m%d')
COMMIT_HASH=$(git rev-parse --short HEAD)
echo "FILE_NAME=boa-nightly-linux-${DATE}-${COMMIT_HASH}" >> $GITHUB_ENV
id: vars
run: |
DATE=$(date +'%Y%m%d')
COMMIT_HASH=$(git rev-parse --short HEAD)
echo "FILE_NAME=boa-nightly-linux-${DATE}-${COMMIT_HASH}" >> $GITHUB_ENV
- name: Rename Binary
run: mv target/release/boa target/release/$FILE_NAME
run: mv target/release/boa target/release/$FILE_NAME

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
Expand Down

0 comments on commit 40f71f2

Please sign in to comment.