Skip to content

git: Dummy tag workflow trigger 05 #5

git: Dummy tag workflow trigger 05

git: Dummy tag workflow trigger 05 #5

Workflow file for this run

name: Test.Tags
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build-game:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4 # Clone the repo
with:
submodules: recursive
- uses: goto-bus-stop/setup-zig@v2 # Will compile with ZigCC
with:
version: 0.13.0
- name: build
run: echo "Hello Test.Tags Build!"
- name: test-zig
run: zig version && zig zen