Skip to content

Update release_backend.yml #7

Update release_backend.yml

Update release_backend.yml #7

Workflow file for this run

# 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