Skip to content

Commit

Permalink
✨ Add support for base http auth
Browse files Browse the repository at this point in the history
  • Loading branch information
jag-k committed Nov 30, 2023
1 parent 0cbacd2 commit 5705185
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:

permissions:
contents: write
packages: write

jobs:
build:
Expand Down Expand Up @@ -40,6 +41,7 @@ jobs:
id: get_version
run: |
echo "version=$(grep -E '^\[tool\.poetry\]$' -A 4 pyproject.toml | grep -E '^version' | sed 's/version = "//;s/"$//')" >> $GITHUB_OUTPUT
- name: Get short SHA
id: slug
run: echo "sha=$(echo ${GITHUB_SHA} | cut -c1-7)" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -67,3 +69,5 @@ jobs:
tag_name: v${{ steps.get_version.outputs.version }}
generate_release_notes: true
append_body: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5705185

Please sign in to comment.