Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github: bump actions to node20 #226

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ jobs:
name: Site
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- run: pip3 install -U camkes-deps
- run: sudo apt-get install doxygen
- run: sudo gem install bundler -v 2.4.22
- run: make build JEKYLL_ENV=production
- run: tar -cvf site.tar _site/
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: site
path: site.tar
Expand All @@ -45,13 +45,13 @@ jobs:
name: 'Deploy'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: gh-pages
token: ${{ secrets.GH_TOKEN }}
# for removing files, we need to start fresh; this does not remove dot-files
- run: rm -rf *
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: site
- run: tar -xvf site.tar
Expand Down