Skip to content

Commit

Permalink
fix workflows: fix missing directory in release.yml, fix wrong branch
Browse files Browse the repository at this point in the history
name in ci.yml
  • Loading branch information
saitewasreset committed Mar 12, 2024
1 parent 4c9d616 commit 84d8cfd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
push:
branches:
- master
- main

jobs:
test:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,13 @@ jobs:
run: |
echo "TARGET_FLAGS=--target ${{ matrix.target }}" >> $GITHUB_ENV
echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV
- name: Creating directory for archive
shell: bash
run: |
mkdir -p "$ARCHIVE"
cp "$BIN" "$ARCHIVE"/
cp {README.md,LICENSE.md} "$ARCHIVE"/
- name: Show command used for Cargo
shell: bash
Expand Down

0 comments on commit 84d8cfd

Please sign in to comment.