Skip to content

Commit

Permalink
update CI, change to node 18 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
ipa-rwu authored Oct 9, 2023
1 parent d36db35 commit 5a5388f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_slides.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
build_slides:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install package
run: |
sudo apt-get -y install chromium-browser
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: "18"

- name: Cache dependencies
uses: actions/cache@v2
Expand All @@ -30,17 +30,17 @@ jobs:
run: npm install decktape && npm install @shd101wyy/mume

- name: Compile slides
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.6'
architecture: 'x64'
python-version: "3.12"
architecture: "x64"
- run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
python3 export.py
- name: Upload slides
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: slides
path: /home/runner/work/${{ github.event.repository.name }}/${{ github.event.repository.name }}/export/

0 comments on commit 5a5388f

Please sign in to comment.