action fix #32
Workflow file for this run
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: Publish Preview | |
on: | |
push: | |
tags: ["*"] | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
version: | |
runs-on: windows-latest | |
outputs: | |
version: ${{ github.ref_name }} | |
steps: | |
- name: Version | |
run: Write-Host "publish version is ${{ github.ref_name }}" -Foreground Green | |
build: | |
runs-on: windows-latest | |
needs: version | |
outputs: | |
version: ${{ needs.version.outputs.version }} | |
strategy: | |
matrix: | |
configuration: [ Debug, Release ] | |
platform: [ x64, arm64 ] | |
env: | |
Platform: ${{ matrix.platform }} | |
Version: ${{ needs.version.outputs.version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
- name: SHA | |
id: sha | |
run: echo "sha=$("${{ github.sha }}".SubString(0, 7))" >> $env:GITHUB_OUTPUT | |
- name: Build | |
run: ./build.ps1 -Architecture $env:Platform -Version $env:Version | |
- name: Metadata | |
run: ./metadata.ps1 -Architecture $env:Platform -Version $env:Version | |
- name: Upload Artifact | |
uses: actions/[email protected] | |
with: | |
name: metadata_${{ matrix.platform }} | |
path: build/metadata/ | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
prerelease: true | |
files: ./build/release/package/* | |
metadata: | |
runs-on: windows-latest | |
needs: build | |
steps: | |
- name: Checkout Metadata | |
uses: actions/checkout@v3 | |
with: | |
ref: metadata | |
- name: Download Artifact x64 | |
uses: actions/[email protected] | |
with: | |
name: metadata_x64 | |
- name: Download Artifact arm64 | |
uses: actions/[email protected] | |
with: | |
name: metadata_arm64 | |
- name: Create Metadata Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
branch: update-metadata/v1 | |
delete-branch: true | |
title: update metadata ${{ needs.build.outputs.version }} | |
commit-message: update metadata ${{ needs.build.outputs.version }} |