Update library.json #1
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 gihub and artifact | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
paths: | |
- "library.json" | |
- "CHANGELOG.md" | |
jobs: | |
release: | |
name: Release to github and artifact | |
runs-on: ubuntu-latest | |
env: | |
CI: false | |
appname: library | |
steps: | |
- uses: actions/checkout@v3 | |
name: Check out code | |
- name: Version convert | |
id: convert_version | |
run: | | |
version=$(jq -r '.Version' "${{ env.appname }}.json") | |
version_core=${version%%-*} | |
echo "VERSION=$version" >> $GITHUB_OUTPUT | |
echo "VERSION_CORE=$version_core" >> $GITHUB_OUTPUT | |
if [[ $version == *-* ]]; then | |
echo "rc release version" | |
echo "CHANNEL=dev" >> $GITHUB_OUTPUT | |
else | |
echo "release version" | |
echo "CHANNEL=release" >> $GITHUB_OUTPUT | |
fi | |
- name: Create Zip Archive for artifact | |
run: | | |
mkdir ${{ env.appname }} artifacts | |
cp -r apps ${{ env.appname }} | |
cp -r docs ${{ env.appname }} | |
cp -r template ${{ env.appname }} | |
cp *.md ${{ env.appname }} | |
cp ${{ env.appname }}.json ${{ env.appname }} | |
cp ${{ env.appname }}.json CHANGELOG.md artifacts | |
zip -r ${{ env.appname }}-${{ steps.convert_version.outputs.VERSION_CORE }}.zip ${{ env.appname }} | |
cp ${{ env.appname }}-${{ steps.convert_version.outputs.VERSION_CORE }}.zip artifacts | |
cp artifacts/${{ env.appname }}-${{ steps.convert_version.outputs.VERSION_CORE }}.zip artifacts/${{ env.appname }}-latest.zip | |
- name: Upload zip files to Azure Blob | |
uses: LanceMcCarthy/Action-AzureBlobUpload@v2 | |
with: | |
connection_string: ${{ secrets.AZURE_STORAGE_ARTIFACT }} | |
container_name: ${{ steps.convert_version.outputs.CHANNEL }} | |
source_folder: artifacts/ | |
destination_folder: ./websoft9/plugin/${{ env.appname }} | |
delete_if_exists: true | |
fail_if_source_empty: true | |
- name: Create Github Release from code | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
${{ env.appname }}.json | |
tag_name: ${{ steps.convert_version.outputs.VERSION }} | |
title: Release-${{ steps.convert_version.outputs.VERSION }} | |
body: ${{ steps.update_data.outputs.CHANGELOG }} | |
draft: false | |
prerelease: false |