-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c22e08
commit 3d77d35
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
name: semantic-prerelease | ||
|
||
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- pre* | ||
- beta* | ||
- alpha* | ||
- rc* | ||
- nigtly* | ||
paths: | ||
- ".docker/**" | ||
|
||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
build: | ||
# Name the Job | ||
name: semantic-release | ||
# Set the agent to run on | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
python-version: [3.8] | ||
|
||
# Load all steps # | ||
steps: | ||
# Checkout the code base # | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# set env variable | ||
- name: Set env variable | ||
run: echo "BRANCH=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV | ||
|
||
# install poetry | ||
- name: Install poetry | ||
run: pipx install poetry>=1.3.2 | ||
|
||
# install dependencies | ||
- name: Install dependencies | ||
run: poetry install --with dev | ||
|
||
- name: Python Semantic Release to PyPI | ||
run: | | ||
git config --global user.name "GitHub Actions" | ||
git config --global user.email "[email protected]" | ||
poetry run semantic-release publish --prerelease --verbosity=DEBUG --define=branch=${{ env.BRANCH }} | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |