update gw #9
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |