This commit is contained in:
parent
084d769cb6
commit
85dfc1ce8c
40
.gitea/workflows/release.yml
Normal file
40
.gitea/workflows/release.yml
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
name: Create Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Get version
|
||||||
|
id: get_version
|
||||||
|
run: |
|
||||||
|
if [ "${{ github.ref_type }}" = "tag" ]; then
|
||||||
|
echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "version=$(date +'%Y.%m.%d-%H%M')" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Create ZIP archive
|
||||||
|
run: |
|
||||||
|
zip -r fourthwall-store-embed.zip . -x ".git/*" ".gitea/*"
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
uses: actions/release@v1
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.CI_USER }}
|
||||||
|
password: ${{ secrets.CI_TOKEN }}
|
||||||
|
title: Release ${{ steps.get_version.outputs.version }}
|
||||||
|
tag_name: ${{ steps.get_version.outputs.version }}
|
||||||
|
files: |
|
||||||
|
fourthwall-store-embed.zip
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
Loading…
Reference in New Issue
Block a user