Changing workflows triggers
Some checks failed
Tag Release / create new images with tag (release) Failing after 0s

This commit is contained in:
Guillermo
2026-02-16 16:50:00 +00:00
parent c25c6c2916
commit 1976432a95
2 changed files with 16 additions and 10 deletions

View File

@@ -1,11 +1,13 @@
name: Workflow de prueba
on:
- push
pull_request_review:
types: [submitted]
env:
DOCKER_ORG: beyondcx
BRANCH_NAME: proxy
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
Build and push images:
@@ -14,12 +16,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Extract Branch Name
run: echo "${{ gitea.ref }}" ;
echo "${{ gitea.ref }}" | sed 's|refs/heads/||' ;
- name: Extract Tag Name
uses: olegtarasov/get-tag@v2.1.4
id: tagName
- name: Echo branch name
run: echo "${{ env.BRANCH_NAME }}"
echo ${{ env.BRANCH_NAME }}
#- name: Setup QEMU
# uses: docker/setup-qemu-action@v3

View File

@@ -1,12 +1,15 @@
name: Tag Release
on:
- create
release:
types: [created,edited,published]
jobs:
create new images with tag:
runs-on: ubuntu-latest
steps:
- name: Extract Branch Name
run: echo "${{ gitea.ref }}" ;
- name: Extract Tag Name
uses: olegtarasov/get-tag@v2.1.4
id: tagName
run: echo "$GIT_TAG_NAME";