Skip to content

Update Policies with new changes (#226) #21

Update Policies with new changes (#226)

Update Policies with new changes (#226) #21

Workflow file for this run

name: Release
on:
push:
tags: ["v*"]
jobs:
create-release:
if: endsWith(github.ref, 'main')
name: Create Release
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create-release.outputs.upload_url }}
steps:
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: true
prerelease: false
build-release:
uses: ./.github/workflows/build.yml
needs: create-release
with:
tag: ${{ github.ref_name }}
upload_url: ${{ needs.create-release.outputs.upload_url }}
release_ref: ${{ github.ref_name }}
overwrite: false