Skip to content

Commit

Permalink
another deployment test
Browse files Browse the repository at this point in the history
  • Loading branch information
Martina-Graeber-One-Identity committed Nov 20, 2023
1 parent 3124a49 commit 5499b37
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,26 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: documentation
path: imxweb/documentation/ # or path/to/artifact
path: imxweb/documentation/ # or path/to/artifact


deploy:
# Add a dependency to the build job
needs: build

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2 # or the latest "vX.X.X" version tag for this action

0 comments on commit 5499b37

Please sign in to comment.