Skip to content

Commit

Permalink
Enable CI testing in PR branch again.
Browse files Browse the repository at this point in the history
  • Loading branch information
dijksterhuis committed Nov 23, 2024
1 parent 7f861f9 commit d835665
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,28 @@ on:
push:
branch:
- 'development'
- 'add-release-ci-builds'

jobs:
build:
runs-on: ubuntu-latest
steps:

- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v2

- name: build_release
run: |
python3 -m pip install --user virtualenv
virtualenv -p python3 ./venv
./venv/bin/python3 -m pip install -r ./requirements.release.txt
./venv/bin/python3 ./release.py
- name: read_release_details
run: |
echo "TAG_NAME=$(cat ./release/tag_name.txt)" >> $GITHUB_ENV
echo "RELEASE_TITLE=$(cat ./release/release_name.txt)" >> $GITHUB_ENV
- name: release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit d835665

Please sign in to comment.