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

Fixes required to deploy jenkins and sushi #69

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
validate:
name: Validate Implementation Guide
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [10, 12]
Expand All @@ -19,7 +19,7 @@ jobs:
- name: Set up OpenJDK
uses: actions/setup-java@v1
with:
java-version: 8
java-version: 11

- name: Set up Jekyll
run: |
Expand All @@ -34,7 +34,7 @@ jobs:

- name: Install SUSHI and add FSH definitions
run: |
npm install -g fsh-sushi
npm install -g fsh-sushi@^2.10.2
sushi .

- name: Update IG publisher
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ on:
jobs:
publish:
name: 📝 Preview Implementation Guide
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: 👩‍💻 Checkout code
uses: actions/checkout@v3

- name: 🛠 Set up OpenJDK
uses: actions/setup-java@v1
with:
java-version: 8
java-version: 11

- name: 🛠 Set up Jekyll
run: |
Expand All @@ -30,7 +30,7 @@ jobs:

- name: 🛠 Install SUSHI and add FSH definitions
run: |
npm install -g fsh-sushi
npm install -g fsh-sushi@^2.10.2
sushi .

- name: ⬆️ Update IG publisher
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
publish:
name: Publish Implementation Guide
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [10, 12]
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Set up OpenJDK
uses: actions/setup-java@v1
with:
java-version: 8
java-version: 11

- name: Set up Jekyll
run: |
Expand All @@ -36,7 +36,7 @@ jobs:

- name: Install SUSHI and add FSH definitions
run: |
npm install -g fsh-sushi
npm install -g fsh-sushi@^2.10.2
sushi .

- name: Update IG publisher
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
release:
if: github.event.pull_request.merged && contains(github.event.pull_request.labels.*.name, 'release')
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Manual workaround for Github not having a runtime macro to check for the default branch
id: gatekeeper
Expand Down