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 b629f17 commit 0cbacd2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ env:
on:
push:
branches: [ "main" ]
tags:
- "v*.*.*"
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -56,11 +58,12 @@ jobs:

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
body: |
Release ${{ steps.get_version.outputs.version }}
Docker image: `${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.get_version.outputs.version }}`
tag_name: ${{ steps.get_version.outputs.version }}
tag_name: v${{ steps.get_version.outputs.version }}
generate_release_notes: true
append_body: true

0 comments on commit 0cbacd2

Please sign in to comment.