Add a new Item in TOC #123
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: Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get the current version | |
id: current-version | |
run: echo "version=$(python setup.py --version)" >> $GITHUB_ENV | |
shell: bash | |
- name: Run Release Action | |
uses: MusfiqDehan/[email protected] | |
with: | |
version: ${{ env.version }} | |
pypi_token: ${{ secrets.PYPI_API_TOKEN }} | |
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }} | |
dockerhub_password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
dockerhub_pat: ${{ secrets.DOCKERHUB_PAT }} | |
docker_image_name: 'data-preprocessors-image' | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
the_github_username: ${{ secrets.THE_GITHUB_USERNAME }} | |
the_github_repo_name: 'data-preprocessors' | |