Skip to content

Commit

Permalink
Merge pull request #65 from davelopez/update_github_workflows
Browse files Browse the repository at this point in the history
Update GitHub workflows
  • Loading branch information
davelopez authored May 28, 2024
2 parents ec40b6c + e59124f commit b9033c0
Show file tree
Hide file tree
Showing 4 changed files with 208 additions and 181 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 21
- run: npm install
- name: Compile
run: npm run compile
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get version from tag
id: get_version
Expand Down Expand Up @@ -46,12 +46,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 21

- name: Clean install dependencies
run: |
Expand All @@ -72,7 +72,7 @@ jobs:
extensionFile: ${{ steps.publishToOpenVSX.outputs.vsixPath }}

- name: Upload vsix as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: galaxy-workflows-${{needs.prepare_release.outputs.release_version}}.vsix
path: ${{ steps.publishToOpenVSX.outputs.vsixPath }}
Expand Down
Loading

0 comments on commit b9033c0

Please sign in to comment.