Publishing Package Version 0.3.11 #23
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: Release To Packagist | |
run-name: Publishing Package Version ${{ github.event.inputs.Version }} | |
on: | |
workflow_dispatch: | |
inputs: | |
Version: | |
description: "This input field requires version in format: x.y.z, where x => major version, y => minor version and z => patch version" | |
required: true | |
jobs: | |
create-release: | |
name: Creating release version ${{ github.event.inputs.Version }} | |
runs-on: ubuntu-latest | |
environment: Production | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create Tag | |
id: tag_version | |
uses: mathieudutour/[email protected] | |
with: | |
github_token: ${{ secrets.TAGS_TOKEN }} | |
custom_tag: ${{ github.event.inputs.Version }} | |
tag_prefix: "" | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: ${{ steps.tag_version.outputs.new_tag }} | |
name: Release Version ${{ github.event.inputs.Version }} | |
body: ${{ steps.tag_version.outputs.changelog }} | |
- name: Send slack notification | |
id: slack | |
uses: slackapi/[email protected] | |
with: | |
channel-id: 'C012YFE3D6D' | |
slack-message: "core-lib-php release has been triggered!" | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} |