cosinekitty / sapphire

Sapphire - free modules for VCV Rack 2
GNU General Public License v3.0
24 stars 3 forks source link

Exclude tags from running GitHub Actions workflows #57

Closed cosinekitty closed 3 months ago

cosinekitty commented 3 months ago

Add this to prevent tag pushes from running my workflow:

on:
  push:
    tags-ignore:
      - '**'

Full documentation at: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions

cosinekitty commented 3 months ago

I tried the syntax above in SapphireTests, but it also excluded running the tests for that push, which is wrong! So I need to better understand how to fix this before doing anything else. I have reverted the attempt.