forked from eflows4hpc/ParSoDA-Py
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added release and prerelease workflows
- Loading branch information
Showing
2 changed files
with
92 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,44 @@ | ||
name: Create Pre-Release | ||
|
||
on: | ||
push: | ||
branches: ["release"] | ||
pull_request: | ||
branches: ["release"] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: Build Pre-Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout code | ||
uses: actions/checkout@v2 | ||
- | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
- | ||
name: Build Release | ||
run: python3 -m pip install . | ||
- | ||
name: Create current version based on time | ||
id: versioning | ||
run: | | ||
echo "::set-output name=version::$(date +'%Y-%m-%d' --utc)" | ||
- | ||
name: Create Stable Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | ||
with: | ||
tag_name: unstable-${{steps.versioning.outputs.version}} | ||
release_name: Unstable-${{steps.versioning.outputs.version}} | ||
body: | | ||
draft: false | ||
prerelease: true | ||
|
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,48 @@ | ||
name: Create Stable Release | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
paths: | ||
- VERSION | ||
pull_request: | ||
branches: ["main"] | ||
paths: | ||
- VERSION | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: Build Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout code | ||
uses: actions/checkout@v2 | ||
- | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
- | ||
name: Test package build | ||
run: python3 -m pip install . | ||
- | ||
name: Read VERSION file | ||
id: versioning | ||
run: | | ||
echo "::set-output name=version::$(cat VERSION)" | ||
- | ||
name: Create Stable Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | ||
with: | ||
tag_name: v${{steps.versioning.outputs.version}} | ||
release_name: v${{steps.versioning.outputs.version}} | ||
body: | | ||
draft: false | ||
prerelease: false | ||
|