Skip to content

Commit

Permalink
ci: use better names for jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
lentidas committed Oct 16, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 4cf6dec commit ccf552e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/publish-javadoc.yaml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ on:
- main

jobs:
build:
generate-javadoc:
runs-on: ubuntu-latest
steps:
- name: "Check out the repository"
@@ -27,13 +27,12 @@ jobs:
with:
path: target/reports/apidocs

# Deployment job
deploy:
deploy-github-pages:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
needs: generate-javadoc
steps:
- name: "Deploy to GitHub Pages"
id: deployment

0 comments on commit ccf552e

Please sign in to comment.