Skip to content

Commit 6bcde5f

Browse files
authored
Merge pull request #6 from techman83/development
Release v0.2.3
2 parents dfb1665 + a33c4b3 commit 6bcde5f

File tree

3 files changed

+11
-30
lines changed

3 files changed

+11
-30
lines changed

.github/workflows/release.yml

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
---
2-
name: Generate Release
1+
name: Release Version
32

43
on:
54
push:
6-
tags:
7-
- "v*"
5+
branches:
6+
- main
87

98
jobs:
10-
generate-release:
11-
runs-on: "ubuntu-latest"
12-
9+
release:
10+
runs-on: ubuntu-latest
1311
steps:
1412
- uses: actions/checkout@v2
13+
- name: collect_tag_version
14+
run: |
15+
echo VERSION=$(cat filament_scale_enhanced/fse_version.py | awk '{ print $3 }' | sed 's/"//g') >> $GITHUB_ENV
1516
- name: Setup Python
1617
uses: actions/setup-python@v2
1718
with:
@@ -31,6 +32,7 @@ jobs:
3132
repo_token: "${{ secrets.GITHUB_TOKEN }}"
3233
prerelease: false
3334
draft: false
35+
automatic_release_tag: "v${{ env.VERSION }}"
3436
files: |
3537
LICENSE.txt
36-
dist/*.tar.gz
38+
dist/*.tar.gz

.github/workflows/tag.yml

-21
This file was deleted.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.2.2"
1+
VERSION = "0.2.3"

0 commit comments

Comments
 (0)