Skip to content

Commit

Permalink
Preparing release 4.3.1 (#166)
Browse files Browse the repository at this point in the history
* fix(CI): updating github actions

* chore(npm): version bump
  • Loading branch information
re1ro authored Dec 5, 2022
1 parent bc2db6f commit 32b6173
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 91 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
node-version:
- 14.x
os:
- ubuntu-18.04
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
20 changes: 15 additions & 5 deletions .github/workflows/publish-bytecode.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ jobs:
node-version:
- 14.x
os:
- ubuntu-18.04
- ubuntu-22.04
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v1
Expand All @@ -34,7 +36,15 @@ jobs:
id: release_tag
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}

- uses: actions/upload-artifact@v2
- name: Create zip file
working-directory: ./artifacts
run: |
zip -r Bytecode-${{ steps.release_tag.outputs.VERSION }}.zip *
- name: Upload Bytecode to release
uses: svenstaro/upload-release-action@v2
with:
name: Bytecode-${{ steps.release_tag.outputs.VERSION }}
path: artifacts/
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./artifacts/Bytecode-${{ steps.release_tag.outputs.VERSION }}.zip
tag: ${{ steps.release_tag.outputs.VERSION }}
overwrite: true
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
node-version:
- 14.x
os:
- ubuntu-18.04
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
Loading

0 comments on commit 32b6173

Please sign in to comment.