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:
|
jobs:
|
||||||
dockerize:
|
dockerize:
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
environment: ${{ startsWith(github.ref, 'refs/tags/') && 'release' || '' }}
|
||||||
environment: 'release'
|
runs-on: ubuntu-latest
|
||||||
runs-on: 'ubuntu-latest'
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
id-token: write
|
id-token: write
|
||||||
|
@ -62,7 +61,7 @@ jobs:
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
||||||
# Publish packages and create git tags if needed
|
# Publish packages and create git tags if needed
|
||||||
publish-and-tag:
|
publish-and-tag:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -121,6 +120,6 @@ jobs:
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.BOT_PAT }}
|
token: ${{ secrets.BOT_PAT }}
|
||||||
body: ''
|
body: ""
|
||||||
files: /tmp/logto.tar.gz
|
files: /tmp/logto.tar.gz
|
||||||
append_body: true
|
append_body: true
|
||||||
|
|
Loading…
Add table
Reference in a new issue