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

View File

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