Skip to content

Commit

Permalink
Create tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
yoterel authored Feb 29, 2024
1 parent 6b27de6 commit 9bc57a6
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/tmp
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: temp tester
on:
workflow_dispatch:

jobs:
testing:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.9'

- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ".[build]"
- name: Bump version
run: |
bumpver update --no-fetch --patch
echo "ICATCHER_VER=$(icatcher --version | awk '{print $2}')" >> $GITHUB_ENV

- name: Tag version
git tag
git tag ${{ env.ICATCHER_VER }} master
git tag
- name: Build package
run: python -m build

0 comments on commit 9bc57a6

Please sign in to comment.