Skip to content

Commit

Permalink
:construction-worker: ci: Fix trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
esnya committed Sep 18, 2023
1 parent 479481c commit 9a2e830
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 61 deletions.
61 changes: 60 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,73 @@
name: Release
on: push

env:
packageName: "com.nekometer.esnya.inari-udon"

permissions:
contents: write

jobs:
release:
semantic-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
- run: npm i -g semantic-release semantic-release-gitmoji @semantic-release/github @semantic-release/git @semantic-release/npm foreach-cli

- id: prev_version
uses: notiz-dev/github-action-json-property@7c8cf5cc36eb85d8d287a8086a39dac59628eb31
with:
path: "Packages/${{env.packageName}}/package.json"
prop_path: "version"

- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- id: version
uses: notiz-dev/github-action-json-property@7c8cf5cc36eb85d8d287a8086a39dac59628eb31
with:
path: "Packages/${{env.packageName}}/package.json"
prop_path: "version"
outputs:
prev_version: ${{ steps.prev_version.outputs.prop }}
next_version: ${{ steps.version.outputs.prop }}

vcc-release:
runs-on: ubuntu-latest
needs: semantic-release
if: needs.semantic-release.outputs.prev_version != needs.semantic-release.outputs.next_version
steps:
- uses: actions/checkout@v3
- run: echo "version=${{ needs.semantic-release.outputs.next_version }}" >> $GITHUB_ENV

- run: |
echo "zipFile=${{ env.packageName }}-${{ steps.version.outputs.prop }}".zip >> $GITHUB_ENV
echo "unityPackage=${{ env.packageName }}-${{ steps.version.outputs.prop }}.unitypackage" >> $GITHUB_ENV
- uses: thedoctor0/zip-release@09336613be18a8208dfa66bd57efafd9e2685657
with:
type: "zip"
directory: "Packages/${{env.packageName}}/"
filename: "../../${{env.zipFile}}" # make the zip file two directories up, since we start two directories in above

- run: find "Packages/${{env.packageName}}/" -name \*.meta >> metaList
- uses: pCYSl5EDgo/create-unitypackage@cfcd3cf0391a5ef1306342794866a9897c32af0b
with:
package-path: ${{ env.unityPackage }}
include-files: metaList

- uses: svenstaro/upload-release-action@v2
with:
tag: v${{ steps.version.outputs.prop }}
file: ${{ env.zipFile }}
- uses: svenstaro/upload-release-action@v2
with:
tag: v${{ steps.version.outputs.prop }}
file: ${{ env.unityPackage }}
- uses: svenstaro/upload-release-action@v2
with:
tag: v${{ steps.version.outputs.prop }}
file: Packages/${{ env.packageName }}/package.json
58 changes: 0 additions & 58 deletions .github/workflows/vcc-release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Packages/com.nekometer.esnya.inari-udon/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.nekometer.esnya.inari-udon",
"displayName": "InariUdon",
"version": "10.0.0-beta.1",
"version": "10.0.0-alpha.3",
"private": true,
"description": " Useful prefabs and Udon scripts for VRChat World SDK 3.0",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inariudon",
"version": "10.0.0-alpha.1",
"version": "10.0.0-alpha.3",
"workspaces": [
"Packages/*"
],
Expand Down

0 comments on commit 9a2e830

Please sign in to comment.