Skip to content

Release

Release #3

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Exit if not on main branch
if: endsWith(github.ref, 'main') == false
run: exit 0
- name: Hello world
run: echo "Hello world"