Skip to content

Commit

Permalink
Named all steps
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankoppier committed Jun 16, 2024
1 parent 8d27ff4 commit fc5ce70
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,21 @@ jobs:
pull-requests: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-java@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
cache: 'gradle'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3

- name: Build
run: ./gradlew build

Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/website_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -28,10 +29,12 @@ jobs:
with:
node-version: '18.x'

- run: npm ci
- name: Install Packages
run: npm ci
working-directory: ./website

- run: npm run prod
- name: Build Website
run: npm run prod
working-directory: ./website

- name: Archive artifact
Expand Down

0 comments on commit fc5ce70

Please sign in to comment.