diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..eda96ce93 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,22 @@ +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + package: + runs-on: macos-11 + steps: + name: Sign binary + uses: lando/code-sign-action@v2 + with: + file: path/to/binary + certificate-data: ${{ secrets.APPLE_CERT_DATA }} + certificate-password: ${{ secrets.APPLE_CERT_PASSWORD }} + apple-notary-user: ${{ secrets.APPLE_NOTARY_USER }} + apple-notary-password: ${{ secrets.APPLE_NOTARY_PASSWORD }} + apple-notary-tool: altool + apple-team-id: FY8GAUX282 + apple-product-id: dev.lando.code-sign-action + options: --options runtime --entitlements entitlements.xml \ No newline at end of file