Compare commits

...

28 Commits

Author SHA1 Message Date
actions-user
9d99ed9f08 Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 35m11s
2025-07-15 16:39:42 +00:00
actions-user
aa95348f88 Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 33m14s
2025-07-15 04:01:08 +00:00
actions-user
21e5905346 Auto updated submodule references 2025-07-14 04:01:04 +00:00
actions-user
81d5dc8648 Auto updated submodule references 2025-07-13 04:01:06 +00:00
actions-user
0e81a737fe Auto updated submodule references 2025-07-12 04:01:06 +00:00
actions-user
ba87c4319a Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 35m22s
2025-07-11 04:01:08 +00:00
actions-user
ec57e2a134 Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 38m4s
2025-07-10 04:01:03 +00:00
actions-user
dc325fd6e4 Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 35m8s
2025-07-09 04:01:04 +00:00
actions-user
77457ea287 Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 37m5s
2025-07-08 04:01:06 +00:00
actions-user
e8b5b63d1c Auto updated submodule references 2025-07-06 04:01:06 +00:00
actions-user
66275b1859 Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 31m14s
2025-07-05 04:01:03 +00:00
actions-user
73d32ca516 Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 32m14s
2025-07-04 04:01:03 +00:00
actions-user
540c2f28b1 Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 32m54s
2025-07-03 04:01:03 +00:00
actions-user
6fc6977161 Auto updated submodule references 2025-07-02 04:01:05 +00:00
actions-user
c2d396a37f Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 31m25s
2025-07-01 16:17:40 +00:00
actions-user
b20416b7c5 Auto updated submodule references 2025-07-01 04:01:05 +00:00
actions-user
be9949c74f Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 33m45s
2025-06-30 14:24:38 +00:00
actions-user
91c4718897 Auto updated submodule references 2025-06-30 04:01:03 +00:00
actions-user
b114c72af5 Auto updated submodule references 2025-06-29 04:01:02 +00:00
actions-user
883a5bcccc Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 36m30s
2025-06-28 04:01:03 +00:00
actions-user
36c0060397 Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 30m58s
2025-06-27 04:01:07 +00:00
actions-user
da3b1211e6 Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 32m57s
2025-06-26 01:55:13 +00:00
actions-user
c851c8ae7c Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 30m55s
2025-06-25 04:01:06 +00:00
actions-user
3f49c16e37 Auto updated submodule references 2025-06-24 04:01:03 +00:00
actions-user
b1829d3728 Auto updated submodule references 2025-06-23 04:01:01 +00:00
actions-user
7d279b7d0f Auto updated submodule references 2025-06-22 04:01:03 +00:00
actions-user
6c30d0dea4 Auto updated submodule references
All checks were successful
Build and push image to DockerHub / build (push) Successful in 29m53s
2025-06-21 04:01:04 +00:00
2fb5ba6951 Add .github/workflows/create-release-from-commit.yaml
Some checks failed
Build and push image to DockerHub / build (push) Has been cancelled
Update Calendso / Submodules Sync (push) Successful in 45s
2025-06-20 15:06:01 +00:00
2 changed files with 65 additions and 1 deletions

View File

@@ -0,0 +1,64 @@
name: "Create Release Tag"
on:
workflow_dispatch:
inputs:
version:
description: 'The new release tag to create (e.g., v3.8.1)'
required: true
type: string
commit_sha:
description: 'The short commit SHA from the calcom submodule to use for this release'
required: true
type: string
jobs:
release:
name: "Tag Release"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout main branch to get starting point"
uses: "actions/checkout@v4"
with:
token: ${{ secrets.TOKEN_GITEA }}
# We check out main, but will create the release commit off of it
# without modifying the branch itself.
ref: 'main'
submodules: true
- name: "Create Release Commit and Tag"
run: |
# Configure git user for the commit
git config user.email "actions@gitea.local"
git config user.name "Gitea Actions"
echo "Updating submodule to commit ${{ inputs.commit_sha }}..."
# Navigate into the submodule, fetch latest history, and check out the specific commit.
# This modifies the submodule's checked-out version in the working directory.
cd calcom
git fetch origin
git checkout ${{ inputs.commit_sha }}
cd ..
# Stage the change to the submodule pointer.
git add calcom
# Create a NEW commit. This commit is NOT on the main branch.
# It's a "dangling" commit that only HEAD is pointing to at this moment.
# The parent of this new commit is the latest commit from 'main'.
git commit -m "release: Version ${{ inputs.version }} with calcom at ${{ inputs.commit_sha }}"
# Get the full SHA of the new commit we just created.
NEW_COMMIT_SHA=$(git rev-parse HEAD)
echo "Created new release commit: $NEW_COMMIT_SHA"
echo "Creating and pushing tag ${{ inputs.version }}..."
# Create an annotated tag pointing directly at our new, branchless commit.
git tag -a "${{ inputs.version }}" -m "Release ${{ inputs.version }}" $NEW_COMMIT_SHA
# Push ONLY the new tag to the repository. Git will automatically send
# the required commit object ($NEW_COMMIT_SHA) along with the tag.
git push origin "${{ inputs.version }}"

2
calcom

Submodule calcom updated: 04e60611ed...10bf982028