39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
name: Build and Release
|
|
run-name: ${{ gitea.actor }}
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
run-terraform:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: Setup python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Install pipenv
|
|
run: pip install pipenv
|
|
- name: Run pipenv install
|
|
run: pipenv install --dev
|
|
# Disabling until we can mock mastodon communication
|
|
# - name: Run Pytest
|
|
# run: pipenv run pytest
|
|
- name: Bump Version
|
|
run: |
|
|
git config --global user.name 'Gitea Actions'
|
|
git config --global user.email 'gitea@gitea.moerks.dk'
|
|
pipenv run bumpver update --minor
|
|
- name: Build Package
|
|
run: pipenv run python -m build
|
|
- name: Publish Package
|
|
run: |
|
|
export TWINE_USERNAME=${{ secrets.TWINE_USER }}
|
|
export TWINE_PASSWORD=${{ secrets.TWINE_PASS }}
|
|
export TWINE_REPOSITORY_URL=${{ secrets.TWINE_REPO }}
|
|
pipenv run twine upload dist/*
|
|
|