Deployment action #1
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
name: Deploy Jersey documentation and apidocs | ||
on: | ||
push: | ||
branches: ["master"] | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
jobs: | ||
# Deployment job | ||
deploy: | ||
Check failure on line 20 in .github/workflows/build-master.yml GitHub Actions / Deploy Jersey documentation and apidocsInvalid workflow file
|
||
environment: | ||
name: github-pages | ||
url: "https://eclipse-ee4j.github.io/jersey.github.io" | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |