chore(release): release atala-automation v0.5.2 #2
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: Atala QA Release | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- "main" | ||
permissions: | ||
id-token: write | ||
jobs: | ||
release-page: | ||
Check failure on line 13 in .github/workflows/deploy-pages.yml GitHub Actions / Atala QA ReleaseInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
needs: release-atala-automation | ||
steps: | ||
- name: Dokka | ||
run: ./gradlew dokkaHtml | ||
- name: Upload GitHub Pages artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: ./docs | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |