Merge pull request #33 from procrastinatio/fixing_actions #9
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: Uploading release assets | ||
on: | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
jobs: | ||
build: | ||
uses: ./.github/workflows/build.yml # use the callable build job to run build | ||
Check failure on line 13 in .github/workflows/release.yaml GitHub Actions / .github/workflows/release.yamlInvalid workflow file
|
||
release: | ||
runs-on: ubuntu-latest | ||
needs: [build] # require build to pass before deploy runs | ||
steps: | ||
- name: Build | ||
run: echo ${{ github.sha }} > Release.txt | ||
- name: Test | ||
run: cat Release.txt | ||
- name: Release assets | ||
uses: softprops/action-gh-release@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
with: | ||
files: | | ||
Release.txt | ||
output/datamodel_de.pdf | ||
output/datamodel_fr.pdf | ||
output/datamodel_de.docx | ||
output/datamodel_fr.docx | ||
output/ER-GCOVER.svg |