Skip to content

Commit b6255c6

Browse files
committed
fix build, add goland project config
1 parent 32aa3f7 commit b6255c6

5 files changed

Lines changed: 35 additions & 3 deletions

File tree

.github/workflows/release.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ jobs:
2020

2121
- name: Copy Built Result
2222
run: |
23-
cp -r ./result/bin/mms $GITHUB_WORKSPACE/
23+
mkdir -p ${{ github.workspace }}/artifacts
24+
cp -r ./result/bin/mms ${{ github.workspace }}/artifacts
2425
2526
- name: Build wasm
2627
run: nix build ".#wasm"
2728

2829
- name: Copy wasm Result
2930
run: |
30-
cp -r ./result/* $GITHUB_WORKSPACE/
31+
cp -r ./result/* ${{ github.workspace }}/artifacts
3132
3233
- name: Get tag name
3334
id: get_tag
@@ -37,7 +38,7 @@ jobs:
3738
uses: softprops/action-gh-release@v2
3839
with:
3940
tag_name: ${{ steps.get_tag.outputs.tag }}
40-
files: $GITHUB_WORKSPACE/*
41+
files: ${{ github.workspace }}/artifacts/*
4142

4243
env:
4344
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/mms.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)