3
0
Fork 0
mirror of https://github.com/dtolnay/install.git synced 2024-11-22 08:29:30 +01:00

Add cxxbridge-cmd build

This commit is contained in:
David Tolnay 2021-10-07 22:52:29 -04:00
parent 059550de26
commit 0c58fefddf
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

29
.github/workflows/cxxbridge-cmd.yml vendored Normal file
View file

@ -0,0 +1,29 @@
name: cxxbridge-cmd
on:
push:
tags:
- cxxbridge-cmd
jobs:
build:
name: cxxbridge-cmd
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
- run: cargo install cxxbridge-cmd
- id: which
run: echo "::set-output name=which::$(which cxxbridge)"
- run: echo "$PRIVATE_KEY" | gpg --import
env:
PRIVATE_KEY: ${{secrets.PRIVATE_KEY}}
- run: gpg --output cxxbridge.sig --detach-sig ${{steps.which.outputs.which}}
- run: gpg --output signing-key.gpg --dearmor signing-key.asc
- run: gpg --no-default-keyring --keyring ./signing-key.gpg --verify cxxbridge.sig ${{steps.which.outputs.which}}
- uses: softprops/action-gh-release@v1
with:
files: |
${{steps.which.outputs.which}}
cxxbridge.sig
fail_on_unmatched_files: true