Merge pull request #13 from Geode-solutions/fix/rename_app #53
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
name: CICD | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/next' || github.ref == 'refs/heads/master' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.TOKEN }} | |
- name: Python Semantic Release | |
uses: python-semantic-release/python-semantic-release@master | |
id: semantic-release | |
with: | |
github_token: ${{ secrets.TOKEN }} | |
- name: Build | |
run: | | |
python3 -m pip install --upgrade build | |
python3 -m build | |
- name: Upload PYPI | |
if: steps.semantic-release.outputs.released == 'true' | |
run: | | |
python3 -m pip install twine | |
python3 -m twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }} | |
- name: Merge master -> next | |
if: github.ref == 'refs/heads/master' | |
uses: devmasx/merge-branch@master | |
with: | |
type: now | |
from_branch: master | |
target_branch: next | |
github_token: ${{ secrets.TOKEN }} | |
docker-build-squash-push: | |
uses: Geode-solutions/actions/.github/workflows/docker-build-squash-push.yml@master | |
if: github.ref == 'refs/heads/next' || github.ref == 'refs/heads/master' | |
with: | |
image_name: "vease-viewer" | |
tag: ${{ github.ref_name }} | |
secrets: | |
TOKEN: ${{secrets.GITHUB_TOKEN}} |