summaryrefslogtreecommitdiffstats
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml34
1 files changed, 15 insertions, 19 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 721f7b7..4be5edb 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -45,16 +45,26 @@ jobs:
- run: |
echo "Tag already present: ${{ steps.tag_create.outputs.tag_exists }}"
- getfiles:
+ PreRelease-getfiles:
runs-on: ubuntu-latest
+ needs: create-tag
+ environment: snapshots_1_10
+ permissions:
+ contents: write
steps:
- - name: Set file base name
- id: set-file-base
+ - name: Get file base name
+ id: get-file-base
run: |
FILE_NAME_BASE=$(echo "${{ inputs.file_base }}")
echo "FILE_BASE=$FILE_NAME_BASE" >> $GITHUB_OUTPUT
# Get files created by tarball script
+ - name: Get doxygen (Linux)
+ uses: actions/download-artifact@v3
+ with:
+ name: docs-doxygen
+ path: ${{ github.workspace }}/${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen
+
- name: Get tgz-tarball (Linux)
uses: actions/download-artifact@v3
with:
@@ -86,27 +96,13 @@ jobs:
name: tgz-ubuntu-2204-binary
path: ${{ github.workspace }}
- # Get files used by release script
-
- PreRelease:
- runs-on: ubuntu-latest
- needs: [create-tag, getfiles]
- environment: snapshots_1_10
- permissions:
- contents: write
- steps:
- - name: Set file base name
- id: get-file-base
- run: |
- FILE_NAME_BASE=$(echo "${{ inputs.file_base }}")
- echo "FILE_BASE=$FILE_NAME_BASE" >> $GITHUB_OUTPUT
-
- name: PreRelease tag
uses: softprops/action-gh-release@v1
with:
- tag_name: "snapshot"
+ tag_name: "snapshot_1_10"
prerelease: true
files: |
+ ${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen
${{ steps.get-file-base.outputs.FILE_BASE }}.tar.gz
${{ steps.get-file-base.outputs.FILE_BASE }}.zip
${{ steps.get-file-base.outputs.FILE_BASE }}-osx12.tar.gz