Skip to content

Commit

Permalink
Minor changes in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rushi3691 committed Apr 30, 2024
1 parent 6dec2a9 commit 1092f29
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- platform: 'macos-latest'
args: '--target x86_64-apple-darwin'
- platform: 'macos-14'
args: ''
args: '--target aarch64-apple-darwin'
# - platform: 'macos-latest'
# args: '--target aarch64-apple-darwin'
- platform: 'ubuntu-22.04'
Expand All @@ -44,8 +44,8 @@ jobs:
- name: Rust setup
uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin
# with:
# targets: aarch64-apple-darwin

- name: Rust cache
uses: swatinem/rust-cache@v2
Expand Down
10 changes: 10 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
git checkout main
git add .
git commit -m "Minor changes in github workflow"
git push origin refs/heads/main

git checkout release
git merge refs/heads/main
git push origin refs/heads/release

git checkout main

0 comments on commit 1092f29

Please sign in to comment.