Skip to content

Add tag triggers for GitHub Actions workflow #6

Add tag triggers for GitHub Actions workflow

Add tag triggers for GitHub Actions workflow #6

Workflow file for this run

name: CI Workflow Trigger
on:
push:
branches:
- main
tags:
- 'v*' # v1, v1.2, v1.2.3
- 'release-*' # release-2025-12-03
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Verify runner
run: |
echo "Runner OS: $RUNNER_OS"
uname -a