modular-avatar/.github/workflows/build-release.yml

101 lines
3.3 KiB
YAML
Raw Normal View History

2022-09-08 11:46:13 +08:00
name: Build Release
2022-08-29 11:16:02 +08:00
2022-09-08 11:46:13 +08:00
on:
workflow_dispatch:
2022-09-09 11:52:06 +08:00
pull_request:
2022-09-08 11:46:13 +08:00
push:
2022-09-09 11:37:40 +08:00
branches:
- main
tags:
- '**'
2022-09-08 11:46:13 +08:00
env:
2022-11-11 12:39:58 +08:00
packageName: "nadena.dev.modular-avatar"
2022-08-29 11:16:02 +08:00
jobs:
2022-09-08 11:46:13 +08:00
build:
2022-08-29 11:16:02 +08:00
runs-on: ubuntu-latest
steps:
2022-09-08 11:46:13 +08:00
- name: Checkout
uses: actions/checkout@v4
2022-10-23 04:31:10 +08:00
- name: Checkout logo assets
uses: actions/checkout@v4
2022-10-23 04:31:10 +08:00
if: startsWith(github.ref, 'refs/tags/')
with:
repository: bdunderscore/modular-avatar-images
path: image-assets
- name: Inject logo assets
if: startsWith(github.ref, 'refs/tags/')
run: |
2022-11-11 12:53:56 +08:00
cp -f image-assets/img/logo/ma_logo.png Packages/${{env.packageName}}/Editor/Images/logo.png
cp -f image-assets/img/logo/ma_icon.png Packages/${{env.packageName}}/Runtime/Icons/Icon_MA_Script.png
2022-09-08 11:46:13 +08:00
- name: Check semver syntax
id: semver-check
if: startsWith(github.ref, 'refs/tags/')
env:
REF_NAME: ${{ github.ref }}
run: |
if echo $REF_NAME | grep '[a-z]-[0-9]' && ! echo $REF_NAME | grep '^refs/tags/1\.5\.0-'; then
echo "Tag name does not follow semver prerelease syntax: $REF_NAME"
exit 1
fi
2022-09-08 11:46:13 +08:00
- name: get version
2022-08-29 11:16:02 +08:00
id: version
uses: notiz-dev/github-action-json-property@a5a9c668b16513c737c3e1f8956772c99c73f6e8
2022-08-29 11:16:02 +08:00
with:
2022-09-08 11:46:13 +08:00
path: "Packages/${{env.packageName}}/package.json"
prop_path: "version"
2022-09-09 11:37:40 +08:00
- name: Check tag consistency
if: startsWith(github.ref, 'refs/tags/')
run: |
if [ "${{ steps.version.outputs.prop }}" != "${GITHUB_REF##*/}" ]; then
echo "Version in package.json does not match tag name: ${{ steps.version.outputs.prop }} != ${GITHUB_REF##*/}"
exit 1
fi
2022-09-08 11:46:13 +08:00
- run: echo ${{steps.version.outputs.prop}}
- name: Set Environment Variables
run: |
echo "zipFile=${{ env.packageName }}-${{ steps.version.outputs.prop }}".zip >> $GITHUB_ENV
echo "unityPackage=${{ env.packageName }}-${{ steps.version.outputs.prop }}.unitypackage" >> $GITHUB_ENV
- name: Create Zip
uses: thedoctor0/zip-release@a24011d8d445e4da5935a7e73c1f98e22a439464
2022-08-29 11:16:02 +08:00
with:
2022-09-08 11:46:13 +08:00
type: "zip"
directory: "Packages/${{env.packageName}}/"
filename: "../../${{env.zipFile}}" # make the zip file two directories up, since we start two directories in above
- uses: actions/upload-artifact@v3
with:
name: package-zip
path: ${{ env.zipFile }}
2023-09-18 00:57:21 +08:00
#
# - name: Create unitypackage
# uses: anatawa12/sh-actions/create-unitypackage@cf32b535acd8f4f05a0eb03e0851264122f98f62
# with:
# output-path: ${{ env.unityPackage }}
# package-path: Packages/${{ env.packageName }}
#
# - uses: actions/upload-artifact@v3
# with:
# name: unitypackage
# path: ${{ env.unityPackage }}
2022-09-08 11:46:13 +08:00
- name: Make Release
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
2022-09-09 11:37:40 +08:00
if: startsWith(github.ref, 'refs/tags/')
2022-08-29 11:16:02 +08:00
with:
2022-09-09 11:37:40 +08:00
draft: true
generate_release_notes: true
2022-09-08 11:46:13 +08:00
tag_name: ${{ steps.version.outputs.prop }}
files: |
${{ env.zipFile }}
Packages/${{ env.packageName }}/package.json