Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetuska committed May 3, 2022
1 parent 20b573e commit fee4fb5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Resolve version
id: resolve
run: |
VERSION="${{ inputs.version }}"
VERSION="${VERSION:=${{ github.event.inputs.version }}}"
echo "::set-output name=version::${VERSION//v}"
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
Expand All @@ -44,4 +50,4 @@ jobs:
git fetch origin gh-pages --depth=1
- run: |
pip install mkdocs-material mike
- run: ./gradlew :npm-publish-docs:mikeDeploy -Pversion='${{ inputs.version }}'
- run: ./gradlew :npm-publish-docs:mikeDeploy -Pversion='${{ steps.resolve.outputs.version }}'

0 comments on commit fee4fb5

Please sign in to comment.