Skip to content

git: Dummy tag workflow trigger #1

git: Dummy tag workflow trigger

git: Dummy tag workflow trigger #1

Workflow file for this run

name: Test.Tags
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
my-job:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: hello-step
run: echo "Hello Test.Tags!"
- name: build
run: echo "Hello Test.Tags Build!"