Skip to content

Commit

Permalink
fix: the archive issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joinhack committed Apr 19, 2024
1 parent 32bafd8 commit 5018989
Showing 1 changed file with 12 additions and 21 deletions.
33 changes: 12 additions & 21 deletions .github/workflows/wasm-v86.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
runs-on: ${{ matrix.runson }}
steps:
- uses: actions/checkout@v2
# - name: Get release
# id: get_release
# uses: bruceadams/[email protected]
# env:
# GITHUB_TOKEN: ${{ github.token }}
- name: Get release
id: get_release
uses: bruceadams/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
- name: create Cross.toml
run: |
echo [target.wasm32-unknown-unknown] > Cross.toml
Expand Down Expand Up @@ -60,27 +60,18 @@ jobs:
- name: Remove File
uses: JesseTG/[email protected]
with:
path: release
path: target/release
- name: Archive Release
uses: thedoctor0/zip-release@main
with:
type: "tar"
filename: ../../../v86.tar.gz
directory: target
path: .
- uses: actions/upload-artifact@v4
- name: upload artifact
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ github.token }}
with:
name: v86.tar.gz
path: |
target
!target/release/build
!target/release/deps
!target/release/examples
!target/release/incremental
# - name: upload artifact
# uses: softprops/action-gh-release@v2
# env:
# GITHUB_TOKEN: ${{ github.token }}
# with:
# files: |
# v86.tar.gz
files: |
v86.tar.gz

0 comments on commit 5018989

Please sign in to comment.