Thanks to visit codestin.com
Credit goes to github.com

Skip to content

jsonpickle v4.0.4

jsonpickle v4.0.4 #6

Workflow file for this run

name: release
# Only do the release on release and pre-release tags.
# Examples:
# * v1.2.3 Stable release
# * v1.2.3rc4 Preview release candidate
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]rc[0-9]+"
# We need this to be able to create releases.
permissions:
contents: write
jobs:
# The create-release job runs purely to initialize the GitHub release itself,
# and names the release after the `x.y.z` tag that was pushed. It's separate
# from building the release so that we only create the release once.
create-release:
name: create-release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get the release version from the tag
if: env.VERSION == ''
run: |
echo "VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
echo "VERSION_NUMBER=$(echo ${{ github.ref_name }} | sed -e s'/^v//')" >> $GITHUB_ENV
- name: Show the version
run: |
echo "VERSION = $VERSION"
echo "VERSION_NUMBER = $VERSION_NUMBER"
- name: Create GitHub release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create "$VERSION" --verify-tag --title "$VERSION"
outputs:
version: ${{ env.VERSION }}
version_number: ${{ env.VERSION_NUMBER }}