-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build CLI: Replace rake release GitHub action
* Replace rake with the CLI tool in the real release GitHub Action. * Remove testing file for release with build CLI tool.
- Loading branch information
1 parent
b0b5323
commit 5976714
Showing
2 changed files
with
5 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,15 +42,6 @@ jobs: | |
- name: libudev-dev | ||
if: runner.os == 'Linux' | ||
run: sudo apt-get install -y libudev-dev | ||
- name: install ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: "3.0" | ||
bundler-cache: true | ||
- name: install ruby:gem::dotenv | ||
run: gem install dotenv | ||
- name: install ruby:gem::json | ||
run: gem install json | ||
- name: install node | ||
uses: actions/setup-node@master | ||
with: | ||
|
@@ -59,10 +50,14 @@ jobs: | |
uses: hecrj/setup-rust-action@v1 | ||
with: | ||
rust-version: ${{ matrix.rust }} | ||
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
- name: cargo install nj-cli | ||
run: cargo install nj-cli | ||
- name: install wasm-pack | ||
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | ||
- name: Install Build CLI tool | ||
run: cargo install --path=cli | ||
- name: enable corepack for yarnpkg upgrade | ||
run: | | ||
corepack enable | ||
|
@@ -91,9 +86,8 @@ jobs: | |
-k "$KEYCHAIN_PWD" \ | ||
"$KEYCHAIN_NAME" | ||
- name: build release | ||
working-directory: ./application/holder | ||
run: | | ||
rake release:prod --trace | ||
cargo chipmunk release | ||
env: | ||
KEYCHAIN_NAME: "build.keychain" | ||
CSC_LINK: ${{ secrets.CSC_LINK }} | ||
|
This file was deleted.
Oops, something went wrong.