2023-10-18 22:40:01 +03:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2023-10-20 12:21:39 +03:00
|
|
|
- 'v*'
|
2023-10-18 22:40:01 +03:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
name: Upload Release Assets
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Upload Release Assets
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Create Release
|
|
|
|
id: create_release
|
|
|
|
uses: actions/create-release@v1
|
2023-10-20 10:27:09 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-10-18 22:40:01 +03:00
|
|
|
with:
|
|
|
|
tag_name: ${{ github.ref }}
|
|
|
|
release_name: Release ${{ github.ref }}
|
2023-12-25 15:59:56 +03:00
|
|
|
draft: true
|
2023-10-21 01:06:34 +03:00
|
|
|
prerelease: false
|
2023-10-18 22:40:01 +03:00
|
|
|
|
|
|
|
- name: create artifacts directory
|
|
|
|
run: mkdir artifact
|
|
|
|
working-directory: ./
|
|
|
|
|
|
|
|
- uses: dawidd6/action-download-artifact@v2
|
|
|
|
id: download-artifact
|
|
|
|
with:
|
|
|
|
workflow: build-uc2.yml
|
|
|
|
workflow_conclusion: success
|
|
|
|
path: artifact
|
|
|
|
|
|
|
|
- name: Display structure of downloaded files
|
|
|
|
run: ls -R
|
|
|
|
working-directory: artifact
|
|
|
|
|
|
|
|
|
|
|
|
- name: Upload Release Assets
|
|
|
|
id: upload-release-assets
|
|
|
|
uses: dwenegar/upload-release-assets@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
release_id: ${{ steps.create_release.outputs.id }}
|
|
|
|
assets_path: artifact
|