Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Build and Push Backend Image on Tag

on:
push:
create:
tags:
- '*'

Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/pr-backport-autotrigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ on:

permissions:
contents: write
actions: write # Allows the workflow to trigger other workflows on push
actions: write
workflows: write

jobs:
backport:
Expand Down Expand Up @@ -81,7 +82,7 @@ jobs:
}
# Create new beta tag
git tag ${{ steps.list-branches.outputs.new_beta_tag }}
# Push the changes and tag to the beta branch
# Push the changes and tag to the beta branch using PAT
git push origin ${{ steps.list-branches.outputs.beta }} --force
git push origin ${{ steps.list-branches.outputs.new_beta_tag }}
# Checkout the stable branch
Expand All @@ -93,6 +94,6 @@ jobs:
}
# Create new stable tag
git tag ${{ steps.list-branches.outputs.new_stable_tag }}
# Push the changes and tag to the stable branch
# Push the changes and tag to the stable branch using PAT
git push origin ${{ steps.list-branches.outputs.stable }} --force
git push origin ${{ steps.list-branches.outputs.new_stable_tag }}
git push origin ${{ steps.list-branches.outputs.new_stable_tag }}
Loading