Upload tar #7
Workflow file for this run
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: Upload tar | |
on: | |
push: | |
tags: ['v*'] | |
jobs: | |
build: | |
name: Upload tar | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Build project | |
id: build | |
shell: bash | |
run: | | |
export VERSION=$(grep project CMakeLists.txt | egrep -o "([0-9]{1,}\.)+[0-9]{1,}") | |
cd .. | |
mv DigiDoc4-Client qdigidoc4-${VERSION} | |
tar czf qdigidoc4-${VERSION}.tar.gz --exclude-vcs qdigidoc4-${VERSION} | |
mv qdigidoc4-${VERSION} DigiDoc4-Client | |
echo "::set-output name=version::$(echo ${VERSION})" | |
echo "::set-output name=asset_name::$(echo qdigidoc4-${VERSION}.tar.gz)" | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ steps.build.outputs.version }} Release | |
draft: true | |
prerelease: false | |
- name: Upload Release Asset | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ../${{ steps.build.outputs.asset_name }} | |
asset_name: ${{ steps.build.outputs.asset_name }} | |
asset_content_type: application/tar+gzip |