You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A clear and concise description of what the bug is
Tag:
ml-fast-api-server0.1.0
Workflow:
on:
push:
tags: #anytime a new tag is pushed that matches this pattern, trigger the workflow
- "ml-fastapi-server/*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Get the version from the github tag
id: get_version
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF##*/}
- name: Echo the version tag
run: |
echo ${{ env.RELEASE_VERSION }}
- name: Release
uses: docker://antonyurchenko/git-release:latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DRAFT_RELEASE: "false"
PRE_RELEASE: "false"
CHANGELOG_FILE: "ml-fastapi-server/CHANGELOG.md"
ALLOW_EMPTY_CHANGELOG: "false"
ALLOW_TAG_PREFIX: "true"
with:
args: |
ml-fastapi-server/dist/ml_fastapi_server-${{ env.RELEASE_VERSION }}-py3-none-any.whl
ml-fastapi-server/dist/ml-fastapi-server-${{ env.RELEASE_VERSION }}.tar.gz
Changelog:
## [0.1.0] - 2020-04-07## Added
- First PR to test changelog
### Changed
- Nothing
### Removed
- Nothing
The text was updated successfully, but these errors were encountered:
Description:
A clear and concise description of what the bug is
Tag:
ml-fast-api-server0.1.0
Workflow:
Changelog:
The text was updated successfully, but these errors were encountered: