Skip to content
This repository was archived by the owner on Aug 24, 2024. It is now read-only.

Commit d350fd6

Browse files
committed
fix: workflow not triggering on tags
1 parent ded9f6e commit d350fd6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ on:
22
push:
33
branches:
44
- "**"
5+
tags:
6+
- 'v*'
57
pull_request:
68
name: build
79
jobs:
@@ -66,6 +68,7 @@ jobs:
6668
uses: docker/setup-qemu-action@8b122486cedac8393e77aa9734c3528886e4a1a8 # ratchet:docker/setup-qemu-action@v2
6769
- name: Test on ARM64 ${{ matrix.release }}
6870
run: ./scripts/docker-test --build --trace --distro arm64v8/debian --release "${{ matrix.release }}"
71+
# Release
6972
release:
7073
if: startsWith(github.ref, 'refs/tags/v')
7174
needs:

0 commit comments

Comments
 (0)