Skip to content

Commit

Permalink
feat: fix release pipeline #3
Browse files Browse the repository at this point in the history
Signed-off-by: seven <[email protected]>
  • Loading branch information
Blankll committed Jan 13, 2024
1 parent c76b185 commit 3e3b97d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [18.x]
node-version: [20.x]

runs-on: ${{ matrix.os }}
timeout-minutes: 20

steps:
- uses: actions/checkout@v3
- name: Github checkout
uses: actions/checkout@v4
- name: Install rpm
run: sudo apt-get install -y rpm
if: matrix.os == 'ubuntu-latest'
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
name: package release
name: distributions release

on:
release:
branches: [master]
types: [created]

jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os.image }}
runs-on: ${{ matrix.os }}

steps:
- name: Github checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 3e3b97d

Please sign in to comment.