There was an error while loading. Please reload this page.
1 parent 7f861f9 commit d835665Copy full SHA for d835665
1 file changed
.github/workflows/release.yml
@@ -2,27 +2,28 @@ on:
2
push:
3
branch:
4
- 'development'
5
+ - 'add-release-ci-builds'
6
7
jobs:
8
build:
9
runs-on: ubuntu-latest
10
steps:
11
12
- name: checkout
- uses: actions/checkout@v2
13
+ uses: actions/checkout@v2
14
15
- name: build_release
16
run: |
17
python3 -m pip install --user virtualenv
18
virtualenv -p python3 ./venv
19
./venv/bin/python3 -m pip install -r ./requirements.release.txt
20
./venv/bin/python3 ./release.py
-
21
+
22
- name: read_release_details
23
24
echo "TAG_NAME=$(cat ./release/tag_name.txt)" >> $GITHUB_ENV
25
echo "RELEASE_TITLE=$(cat ./release/release_name.txt)" >> $GITHUB_ENV
26
27
- name: release
28
uses: softprops/action-gh-release@v1
29
with:
0 commit comments