dda-devops-build/.github/workflows/unstable.yml
Workflow config file is invalid. Please check your config file: yaml: line 7: did not find expected alphabetic or numeric character
2020-07-03 15:41:03 +02:00

21 lines
370 B
YAML

name: unstable
on:
push:
branches:
- master
tags:
- *
- '![0-9]+.[0-9]+.[0-9]+'
jobs:
build:
name: test-my build
runs-on: ubuntu-latest
steps:
- name: debug
run: |
echo ${{ github.ref }}
echo ${{ github.ref == '[0-9]+.[0-9]+.[0-9]+' }}
echo ${{ github.ref != '[0-9]+.[0-9]+.[0-9]+' }}