Skip to content

Commit

Permalink
ci: rename jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
iorate committed Nov 28, 2023
1 parent 3008c89 commit 3d5a4a8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/check-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ on:
- master

jobs:
check:
check-website:
name: Check website
runs-on: ubuntu-22.04
defaults:
run:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:

jobs:
check:
name: Check
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ on:
- website/**

jobs:
build:
build-website:
name: Build website
runs-on: ubuntu-22.04
defaults:
run:
Expand All @@ -30,9 +31,10 @@ jobs:
- uses: actions/upload-pages-artifact@v2
with:
path: website/build
deploy:
deploy-website:
name: Deploy website
runs-on: ubuntu-22.04
needs: build
needs: build-website
steps:
- uses: actions/deploy-pages@v2
id: deployment
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ on:

jobs:
deploy:
name: Deploy
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

jobs:
stale:
name: Stale
runs-on: ubuntu-22.04
steps:
- uses: actions/stale@v8
Expand Down

0 comments on commit 3d5a4a8

Please sign in to comment.