Skip to content

win32 client, omitempty in JSON, upgrades, iOS fix #18

win32 client, omitempty in JSON, upgrades, iOS fix

win32 client, omitempty in JSON, upgrades, iOS fix #18

Workflow file for this run

name: win32
permissions: write-all
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
on:
push:
tags:
- "v*"
jobs:
x86:
x64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- run: |
cmake -A x86 .
cmake --build . --config MinSizeRel
working-directory: win32
- uses: actions/upload-artifact@v4
with:
name: identme.x86.exe
path: win32/MinSizeRel/identme.exe
x64:

Check failure on line 24 in .github/workflows/win32.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/win32.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- run: |
cmake -A x64 .
cmake --build . --config MinSizeRel
working-directory: win32
- uses: actions/upload-artifact@v4
with:
name: identme.x64.exe
path: win32/MinSizeRel/identme.exe
arm64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- run: |
cmake -A ARM64 .
cmake --build . --config MinSizeRel
working-directory: win32
- uses: actions/upload-artifact@v4
with:
name: identme.arm64.exe
path: win32/MinSizeRel/identme.exe
release:
needs: [x64, arm64]
runs-on: windows-latest
steps:
- id: create_release
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref_name }}
release_name: Release ${{ github.ref_name }}
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/download-artifact@v4
with:
name: identme.x86.exe
path: .
- uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: identme.exe
asset_name: identme.x86.exe
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/download-artifact@v4
with:
name: identme.x64.exe
path: .
- uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: identme.exe
asset_name: identme.x64.exe
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/download-artifact@v4
with:
name: identme.arm64.exe
path: .
- uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: identme.exe
asset_name: identme.arm64.exe
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}