Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Merge pull request #18 from steveharrington10/main #1

Merge pull request #18 from steveharrington10/main

Merge pull request #18 from steveharrington10/main #1

Workflow file for this run

name: iOS library build
on:
push:
tags:
- '*'
jobs:
apple-mac:
runs-on: macos-latest
strategy:
fail-fast: true
matrix:
platform: [OS64, TVOS]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Generate project
run: cmake -B build --toolchain .CMake/apple.cmake -DOQS_USE_OPENSSL=OFF -DPLATFORM=${{ matrix.platform }} .
- name: Build project
run: cmake --build build
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: hybridpqc
path: |
${{ github.workspace }}/build/lib/*.*
- name: release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "build/lib/*.*"