Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
labbots committed May 23, 2024
1 parent 29b2cec commit 83496ea
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,22 @@ jobs:
- name: Extract Tag
id: get_tag_name
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}

- name: Checkout source code
uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry

- name: Set up Python
uses: actions/setup-python@v5
with:
cache: 'poetry'

- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
# - name: Install Poetry
# run: |
# curl -sSL https://install.python-poetry.org | python3 -
# echo "$HOME/.local/bin" >> $GITHUB_PATH

- name: Install dependencies
run: poetry install
Expand Down

0 comments on commit 83496ea

Please sign in to comment.