Skip to content

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #2

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #2

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- name: Asset generator
run: npm run assetLister
- name: lint
run: npm run lint
- name: build
run: npx webpack --mode=production
env:
PUBLIC_PATH: '/AncientBeast/'
- name: Upload build artifact
uses: actions/upload-artifact@v1
with:
name: deploy
path: deploy
deploy:
runs-on: ubuntu-22.04
needs: build
if: github.ref == 'refs/heads/master'
steps:
- name: Download build artifact
uses: actions/[email protected]
with:
name: deploy
# Uses: https://github.com/peaceiris/actions-gh-pages
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./deploy