Skip to content

chore: update readme (github app) #563

chore: update readme (github app)

chore: update readme (github app) #563

Workflow file for this run

name: branch-and-tag
on:
push:
branches:
- '*'
tags:
- v1.*
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: check
run: |
if [ ${{ startsWith( github.ref, 'refs/tags/' ) }} == 'true' ]; then
echo 'tag'
else
echo 'push'
fi