mirror of
https://github.com/logto-io/logto.git
synced 2025-02-17 22:04:19 -05:00
fix: fix edge dockerize not triggered bug (#5077)
* fix: fix edge dockerize not triggered bug fix edge dockerize not triggered bug * chore: update workflow syntax update workflow syntax
This commit is contained in:
parent
b204ba8f74
commit
007607dc38
1 changed files with 4 additions and 5 deletions
9
.github/workflows/release.yml
vendored
9
.github/workflows/release.yml
vendored
|
@ -11,9 +11,8 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
dockerize:
|
||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||
environment: 'release'
|
||||
runs-on: 'ubuntu-latest'
|
||||
environment: ${{ startsWith(github.ref, 'refs/tags/') && 'release' || '' }}
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
|
@ -62,7 +61,7 @@ jobs:
|
|||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
|
||||
|
||||
# Publish packages and create git tags if needed
|
||||
publish-and-tag:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -121,6 +120,6 @@ jobs:
|
|||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
token: ${{ secrets.BOT_PAT }}
|
||||
body: ''
|
||||
body: ""
|
||||
files: /tmp/logto.tar.gz
|
||||
append_body: true
|
||||
|
|
Loading…
Add table
Reference in a new issue