Skip to content

Commit

Permalink
#803 updating actions to use Node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
drimpact committed Oct 13, 2022
1 parent 0be8030 commit f9eeb9b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 16.18.0
- name: Install dependencies
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Build project
run: npm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: build-debug
path: build
Expand All @@ -43,17 +43,17 @@ jobs:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Remove previous branding folder
run: rm -rf ./src/branding
- name: Checkout branding repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: impactasaurus/branding
token: ${{ secrets.BRANDING_PERSONAL_ACCESS_TOKEN }}
path: ./src/branding
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 16.18.0
- name: Install dependencies
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Generate Production Files
run: npm run build:prod
- name: Upload build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: build-prod
path: build
Expand All @@ -80,7 +80,7 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
steps:
- name: Download build artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: build-prod
path: dist
Expand Down

0 comments on commit f9eeb9b

Please sign in to comment.