Skip to content

Merge pull request #39 from stakater-ab/nonprod-updates #15

Merge pull request #39 from stakater-ab/nonprod-updates

Merge pull request #39 from stakater-ab/nonprod-updates #15

Workflow file for this run

# Workflow for this repo itself
name: Release
on:
push:
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
submodules: recursive
persist-credentials: false # otherwise your personal token will be used
fetch-depth: 0 # otherwise you will fail to push refs to dest repo
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.STAKATER_AB_REPOS }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false