Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
661592f3c6 |
3
.github/workflows/create-release.yaml
vendored
3
.github/workflows/create-release.yaml
vendored
@@ -39,7 +39,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
github-token: "${{ secrets.ACTIONS_ACCESS_TOKEN }}"
|
github-token: "${{ secrets.ACTIONS_ACCESS_TOKEN }}"
|
||||||
script: |
|
script: |
|
||||||
const isPreRelease = '${{ inputs.RELEASE_TAG }}'.includes('-rc');
|
|
||||||
try {
|
try {
|
||||||
const response = await github.rest.repos.createRelease({
|
const response = await github.rest.repos.createRelease({
|
||||||
draft: false,
|
draft: false,
|
||||||
@@ -48,7 +47,7 @@ jobs:
|
|||||||
name: '${{ inputs.RELEASE_TAG }}',
|
name: '${{ inputs.RELEASE_TAG }}',
|
||||||
target_commitish: 'release-${{ inputs.RELEASE_TAG }}',
|
target_commitish: 'release-${{ inputs.RELEASE_TAG }}',
|
||||||
owner: context.repo.owner,
|
owner: context.repo.owner,
|
||||||
prerelease: isPreRelease,
|
prerelease: false,
|
||||||
repo: context.repo.repo,
|
repo: context.repo.repo,
|
||||||
tag_name: '${{ inputs.RELEASE_TAG }}',
|
tag_name: '${{ inputs.RELEASE_TAG }}',
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -75,10 +75,6 @@ jobs:
|
|||||||
docker.io/calendso/calendso
|
docker.io/calendso/calendso
|
||||||
docker.io/calcom/cal.com
|
docker.io/calcom/cal.com
|
||||||
ghcr.io/calcom/cal.com
|
ghcr.io/calcom/cal.com
|
||||||
# Add flavor latest only on full releases, not on pre-releases
|
|
||||||
flavor: |
|
|
||||||
latest=${{ !github.event.release.prerelease }}
|
|
||||||
prerelease=${{ github.event.release.prerelease }}
|
|
||||||
|
|
||||||
- name: Copy env
|
- name: Copy env
|
||||||
run: |
|
run: |
|
||||||
@@ -188,8 +184,7 @@ jobs:
|
|||||||
NEXT_PUBLIC_LICENSE_CONSENT=${{ env.NEXT_PUBLIC_LICENSE_CONSENT }}
|
NEXT_PUBLIC_LICENSE_CONSENT=${{ env.NEXT_PUBLIC_LICENSE_CONSENT }}
|
||||||
NEXT_PUBLIC_TELEMETRY_KEY=${{ env.NEXT_PUBLIC_TELEMETRY_KEY }}
|
NEXT_PUBLIC_TELEMETRY_KEY=${{ env.NEXT_PUBLIC_TELEMETRY_KEY }}
|
||||||
DATABASE_URL=postgresql://${{ env.POSTGRES_USER }}:${{ env.POSTGRES_PASSWORD }}@${{ env.DATABASE_HOST }}/${{ env.POSTGRES_DB }}
|
DATABASE_URL=postgresql://${{ env.POSTGRES_USER }}:${{ env.POSTGRES_PASSWORD }}@${{ env.DATABASE_HOST }}/${{ env.POSTGRES_DB }}
|
||||||
if: ${{ !github.event.release.prerelease }}
|
|
||||||
|
|
||||||
- name: Image digest
|
- name: Image digest
|
||||||
run: echo ${{ steps.docker_build.outputs.digest }}
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
||||||
|
|
||||||
|
|||||||
2
calcom
2
calcom
Submodule calcom updated: df91dacc3f...2236dfe411
Reference in New Issue
Block a user