Skip to content

Commit

Permalink
Update CI CD Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
haimkastner committed May 8, 2023
1 parent 8522b21 commit 289300a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Install node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
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@v2
- uses: actions/upload-artifact@v3
with:
name: www
path: src
Expand All @@ -31,7 +31,7 @@ jobs:
API_URL: ''
run: |
node scripts/set-environment.js
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: internal
path: src

0 comments on commit 289300a

Please sign in to comment.