Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
nothingface0 committed Nov 17, 2023
1 parent 118494a commit 8d0f677
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions .github/workflows/build_installation_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,23 @@ jobs:
$(which python3) --version
bash download_dependencies.sh DMWM_GIT_TAG=$DMWM_GIT_TAG DMWM_GIT_URL=$DMWM_GIT_URL DQMGUI_GIT_TAG=$DQMGUI_GIT_TAG ROOT_GIT_URL=$ROOT_GIT_URL ROOT_GIT_TAG=$ROOT_GIT_TAG
bash build_installation_package.sh
echo "Automatically generated dummy release for making the installation
package publicly available.
Used:
* DMWM_GIT_TAG=${{ env.DMWM_GIT_TAG }}
* DMWM_GIT_URL=${{ env.DMWM_GIT_URL }}
* DQMGUI_GIT_TAG=${{ env.DQMGUI_GIT_TAG }}
* ROOT_GIT_URL=${{ env.ROOT_GIT_URL }}
* ROOT_GIT_TAG=${{ env.ROOT_GIT_TAG }}
" >> /tmp/release_body.md
echo "RELEASE_TAG=deployment_${{ env.DMWM_GIT_TAG }}_dqmgui_${{ env.DQMGUI_GIT_TAG }}_root_${{ env.ROOT_GIT_TAG }}" >> $GITHUB_ENV
- name: Archive package artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -34,27 +51,9 @@ jobs:
# This will automatically update the artifacts of the "latest" release,
# even though the "latest" tag does match with the actually latest commit.
- name: Release
env:
DMWM_GIT_TAG: ${{ env.DMWM_GIT_TAG }}
DMWM_GIT_URL: ${{ env.DMWM_GIT_URL }}
DQMGUI_GIT_TAG: ${{ env.DQMGUI_GIT_TAG }}
DQMGUI_GIT_URL: ${{ env.DQMGUI_GIT_URL }}
ROOT_GIT_URL: ${{ env.DQMGUI_GIT_TAG }}
ROOT_GIT_TAG: ${{ env.DQMGUI_GIT_URL }}
uses: ncipollo/release-action@v1
with:
artifacts: "/tmp/dqmgui/dqmgui_installation_package.tar.gz"
body:
"Automatically generated dummy release for making the installation
package publicly available.
Used:
* DMWM_GIT_TAG=${{ env.DMWM_GIT_TAG }}
* DMWM_GIT_URL=${{ env.DMWM_GIT_URL }}
* DQMGUI_GIT_TAG=${{ env.DQMGUI_GIT_TAG }}
* ROOT_GIT_URL=${{ env.ROOT_GIT_URL }}
* ROOT_GIT_TAG=${{ env.ROOT_GIT_TAG }}
"
tag: "deployment_${{ env.DMWM_GIT_TAG }}_dqmgui=${{ env.DQMGUI_GIT_TAG }}_root_${{ env.ROOT_GIT_TAG }}"
body: "/tmp/release_body.md"
tag: ${{ env.RELEASE_TAG }}
allowUpdates: "true"

0 comments on commit 8d0f677

Please sign in to comment.