upd artefacts
All checks were successful
Testing Example / build-and-test (push) Successful in 1m35s

This commit is contained in:
SnippetsX 2024-11-13 00:26:22 +03:00
parent bc0232cbbf
commit 8e76cb87c8

View File

@ -46,6 +46,12 @@ jobs:
git tag v${{ env.VERSION }}
git push origin v${{ env.VERSION }}
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: admin_dashboard-${{ env.VERSION }}
path: release-artifacts
- name: Create Release
uses: https://gitea.com/actions/gitea-release-action@v1
with:
@ -53,6 +59,6 @@ jobs:
tag_name: v${{ env.VERSION }}
title: Release v${{ env.VERSION }}
files: |
build/admin_dashboard-${{ env.VERSION }}
release-artifacts/*
draft: false
prerelease: ${{ contains(env.VERSION, 'DEV') || contains(env.VERSION, 'ALPHA') || contains(env.VERSION, 'BETA') }}