Split ReadCertificate functions into parsing files and bytes (#546) #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Release | |
on: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
jobs: | |
ci: | |
uses: smallstep/crypto/.github/workflows/ci.yml@master | |
secrets: inherit | |
create_release: | |
name: Create Release | |
needs: ci | |
runs-on: ubuntu-latest | |
steps: | |
- name: Is Pre-release | |
id: is_prerelease | |
run: | | |
set +e | |
echo ${{ github.ref }} | grep "\-rc.*" | |
OUT=$? | |
if [ $OUT -eq 0 ]; then IS_PRERELEASE=true; else IS_PRERELEASE=false; fi | |
echo "IS_PRERELEASE=${IS_PRERELEASE}" >> "${GITHUB_OUTPUT}" | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: ${{ steps.is_prerelease.outputs.IS_PRERELEASE }} |