Skip to content

Commit

Permalink
Update ci cd tools
Browse files Browse the repository at this point in the history
  • Loading branch information
haimkastner committed Jun 11, 2024
1 parent 289300a commit 6879c80
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Bundle www # The assets build for the public CDN
Expand All @@ -22,7 +22,7 @@ jobs:
export ON_BRANCH=${GITHUB_REF##*/}
if [[ $ON_BRANCH == 'main' ]]; then export API_URL=$API_URL_PROD ; else export API_URL=$API_URL_DEV; fi
node scripts/set-environment.js
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: www
path: src
Expand All @@ -31,7 +31,7 @@ jobs:
API_URL: ''
run: |
node scripts/set-environment.js
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: internal
path: src

0 comments on commit 6879c80

Please sign in to comment.