Skip to content

update gw

update gw #9

Workflow file for this run

name: Linux x86_64 incode
on:
push:
branches:
- "4.x"
tags:
- "*_incode"
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: test
run: echo "hello" && echo "${{github.ref_name}}"
- name: get tag
id: get_tag
run: |
tag=${{ github.ref_name }}
echo "tag: ${tag//[^0-9]/}"
echo "tag=${tag//[^0-9]/}" >> $GITHUB_OUTPUT
- name: print
run: |
echo "${{ steps.get_tag.outputs.tag }}"
# add getting tag