Update release_backend.yml #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
# Release backend from the latest successful build action into a certain release | |
name: Release API Backend | |
on: | |
push: | |
tags: | |
- "PORTAL_RELEASE_*" | |
jobs: | |
do-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifacts | |
uses: dawidd6/action-download-artifact@v6 | |
with: | |
workflow: build_backend.yml | |
workflow_conclusion: success | |
branch: master | |
- name: List files | |
run: | | |
ls -al | |
- name: Add to release | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: Source and web asset release based on tag ${{github.ref}} | |
files: ./**/*.tar.gz | |
fail_on_unmatched_files: true |