[Fix] Sync playsession for non-hp runners (#1110) #95
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: Draft Release Windows | |
on: | |
push: | |
tags: | |
- 'v*' | |
workflow_dispatch: | |
env: | |
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} | |
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} | |
NODE_OPTIONS: '--max_old_space_size=8128' | |
jobs: | |
build-and-release: | |
runs-on: windows-latest | |
steps: | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
node_modules | |
.npm | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install SignPath module | |
run: Install-Module -Name SignPath -Force | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: 'yarn' | |
- name: Reconfigure git to use HTTP authentication | |
run: > | |
git config --global url."https://github.com/".insteadOf | |
ssh://git@github.com/ | |
- name: Authenticate with private NPM package | |
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --network-timeout 600000 && yarn allow-scripts | |
- name: setup env production file | |
run: echo "VITE_LD_ENVIRONMENT_ID=${{ secrets.VITE_LD_ENVIRONMENT_ID }}" > .env.production | |
- name: Cache artifacts | |
uses: actions/cache@v2 | |
with: | |
path: | | |
dist | |
signed | |
key: ${{ runner.os }}-artifacts-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-artifacts- | |
- name: Build artifacts. | |
run: yarn dist:win | |
- name: Upload build file to Signpath | |
run: | | |
$exePath = Get-ChildItem -Path ./dist -Filter "HyperPlay*.exe" | Select-Object -ExpandProperty FullName | |
$exeName = Get-ChildItem -Path ./dist -Filter "HyperPlay*.exe" | Select-Object -ExpandProperty Name | |
Submit-SigningRequest ` | |
-InputArtifactPath $exePath ` | |
-CIUserToken "${{ secrets.SIGNPATH_TOKEN }}"` | |
-OrganizationId "${{ secrets.SIGNPATH_ORG_ID }}" ` | |
-ProjectSlug "HyperPlay_Win_x64" ` | |
-SigningPolicySlug "Release_Signing" ` | |
-OutputArtifactPath "signed/$exeName" ` | |
-WaitForCompletion ` | |
-Force | |
- name: Install powershell-yaml | |
run: Install-Module -Name powershell-yaml -Force | |
- name: Update latest.yml | |
run: | | |
$exePath = Get-ChildItem -Path signed -Filter "HyperPlay*.exe" | Select-Object -ExpandProperty FullName | |
$sha512 = Get-FileHash -Path $exePath -Algorithm SHA512 | Select-Object -ExpandProperty Hash | |
$size = (Get-Item $exePath).Length | |
$latestYml = Get-Content -Path dist/latest.yml -Raw | ConvertFrom-Yaml | |
$latestYml.sha512 = $sha512.ToLower() | |
$latestYml.files[0].sha512 = $sha512.ToLower() | |
$latestYml.files[0].size = $size | |
$latestYml | ConvertTo-Yaml | Set-Content -Path signed/latest.yml | |
- name: Create Release | |
uses: ncipollo/release-action@v1.13.0 | |
with: | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
draft: true | |
allowUpdates: true | |
artifacts: 'signed/latest.yml,signed/HyperPlay*.exe,dist/*.blockmap' |