Skip to content

Commit d835665

Browse files
committed
Enable CI testing in PR branch again.
1 parent 7f861f9 commit d835665

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,28 @@ on:
22
push:
33
branch:
44
- 'development'
5+
- 'add-release-ci-builds'
56

67
jobs:
78
build:
89
runs-on: ubuntu-latest
910
steps:
1011

1112
- name: checkout
12-
uses: actions/checkout@v2
13+
uses: actions/checkout@v2
1314

1415
- name: build_release
1516
run: |
1617
python3 -m pip install --user virtualenv
1718
virtualenv -p python3 ./venv
1819
./venv/bin/python3 -m pip install -r ./requirements.release.txt
1920
./venv/bin/python3 ./release.py
20-
21+
2122
- name: read_release_details
2223
run: |
2324
echo "TAG_NAME=$(cat ./release/tag_name.txt)" >> $GITHUB_ENV
2425
echo "RELEASE_TITLE=$(cat ./release/release_name.txt)" >> $GITHUB_ENV
25-
26+
2627
- name: release
2728
uses: softprops/action-gh-release@v1
2829
with:

0 commit comments

Comments
 (0)