Packed and release Yao Application #16
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: Packed and release Yao Application | |
on: | |
workflow_dispatch: | |
inputs: | |
tags: | |
description: "Version tags" | |
push: | |
branches: [main] | |
paths: | |
- "app.sample.yao" | |
env: | |
VERSION: 1.0.0 | |
jobs: | |
release: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Get Version | |
run: | | |
VERSION=$(cat app.sample.yao |grep version |awk -F : '{print $2}' | sed 's/"//g' | sed 's/,//g' | sed 's/ //g') | |
if [ -z "$VERSION" ]; then | |
VERSION=1.0.0 | |
fi | |
echo VERSION=$VERSION >> $GITHUB_ENV | |
- name: pack | |
run: | | |
rm -rf ./.git | |
rm -rf ./.github | |
zip -q -r yao-amis-admin-${{ env.VERSION }}.zip * | |
# - name: Create Draft Release | |
# id: create_release | |
# uses: actions/create-release@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# tag_name: yao-amis-admin-${{ env.VERSION }} | |
# release_name: yao-amis-admin-${{ env.VERSION }} | |
# draft: true | |
# prerelease: false | |
# - uses: actions/upload-release-asset@v1.0.1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# upload_url: ${{ steps.create_release.outputs.upload_url }} | |
# asset_path: yao-amis-admin-${{ env.VERSION }}.zip | |
# asset_name: yao-amis-admin-${{ env.VERSION }}.zip | |
# asset_content_type: application/zip | |
# - uses: eregon/publish-release@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# release_id: ${{ steps.create_release.outputs.id }} | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: yao-amis-admin-${{ env.VERSION }} | |
files: | | |
yao-amis-admin-${{ env.VERSION }}.zip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get Release URL | |
run: | | |
echo "Release URL: ${{ steps.create_release.outputs.upload_url }}" |