Skip to content

Bump version: 1.0.0 → 1.0.1 #43

Bump version: 1.0.0 → 1.0.1

Bump version: 1.0.0 → 1.0.1 #43

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: stage & preview workflow
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master, main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
publish_dev_build:
runs-on: ubuntu-latest
strategy:
matrix:
python-versions: [ 3.9 ]
permissions:
id-token: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-versions }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry tox tox-gh-actions
- name: test with tox
run:
tox
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_S3_BUCKET: ${{ vars.AWS_S3_BUCKET }}
WANDB_API_KEY: ${{ secrets.WANDB_API_KEY }}
WANDB_ENTITY: ${{ vars.WANDB_ENTITY }}
WANDB_PROJECT: ${{ vars.WANDB_PROJECT }}
WANDB_RUN_GROUP: ${{ vars.WANDB_RUN_GROUP }}
TOKENIZERS_PARALLELISM: ${{ vars.TOKENIZERS_PARALLELISM }}
- name: Build wheels and source tarball
run: |
poetry version $(poetry version --short)-dev.$GITHUB_RUN_NUMBER
poetry version --short
poetry build
- name: publish to Test PyPI
uses: pypa/[email protected]
with:
repository-url: https://test.pypi.org/legacy/
skip_existing: true