-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from elbeno/update-workflow
⬆️ 👷 Update workflows for ubuntu-24.04
- Loading branch information
Showing
10 changed files
with
262 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ env: | |
jobs: | ||
configure: | ||
name: Configure Github Pages Publishing | ||
runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 | ||
runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-24.04 | ||
outputs: | ||
enable_publish: ${{ steps.check.outputs.isfork == 'NO' }} | ||
steps: | ||
|
@@ -30,18 +30,17 @@ jobs: | |
build: | ||
needs: configure | ||
name: Build Documentation | ||
runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 | ||
runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-24.04 | ||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | ||
with: | ||
node-version: 18 | ||
node-version: 20 | ||
- name: Install Mermaid | ||
run: | | ||
sudo npm install -g @mermaid-js/[email protected] | ||
node /usr/local/lib/node_modules/@mermaid-js/mermaid-cli/node_modules/puppeteer/install.js | ||
sudo npm install -g @mermaid-js/[email protected] | ||
- name: Install asciidoctor | ||
run: | | ||
sudo apt update | ||
|
@@ -73,7 +72,7 @@ jobs: | |
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 | ||
runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-24.04 | ||
steps: | ||
- name: Deploy to github pages | ||
id: deployment | ||
|
Oops, something went wrong.