We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0219ae commit 966bf7eCopy full SHA for 966bf7e
.github/workflows/documentation-deployment.yml
@@ -17,18 +17,6 @@ jobs:
17
permissions:
18
contents: write
19
steps:
20
- - name: Configuration
21
- shell: bash
22
- run: |
23
- if [[ "${{ github.event_name }}" != "push" ]]; then
24
- # use tag name
25
- VERSION="${{ github.ref_name }}"
26
- else
27
- # use extracted version from pom.xml on pushes i.e. on develop
28
- VERSION="develop"
29
- fi
30
- echo "version=$VERSION" >> $GITHUB_OUTPUT
31
-
32
- name: Checkout Repository
33
uses: actions/checkout@v4
34
with:
@@ -37,4 +25,4 @@ jobs:
37
- name: Deploy Documentation
38
uses: secure-software-engineering/actions/documentation/deployment@develop
39
40
- version: ${{ env.version }}
+ version: ${{ github.ref_name }}
0 commit comments