WIP proxy #3

Open
garbelo wants to merge 65 commits from proxy into main
2 changed files with 16 additions and 10 deletions
Showing only changes of commit 1976432a95 - Show all commits

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,11 +16,12 @@ 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
echo ${{ env.BRANCH_NAME }}
- name: Echo branch name
run: 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";