mirror of
https://github.com/dtolnay/install.git
synced 2024-11-22 16:29:32 +01:00
38 lines
1.2 KiB
YAML
38 lines
1.2 KiB
YAML
name: build
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
crate:
|
|
required: true
|
|
type: string
|
|
bin:
|
|
required: false
|
|
type: string
|
|
secrets:
|
|
private_key:
|
|
required: true
|
|
|
|
jobs:
|
|
build:
|
|
name: ${{inputs.crate}}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- run: cargo install --force ${{inputs.crate}} --bin ${{inputs.bin || inputs.crate}}
|
|
- id: which
|
|
run: echo "::set-output name=which::$(which ${{inputs.bin || inputs.crate}})"
|
|
- run: echo "$PRIVATE_KEY" | gpg --import
|
|
env:
|
|
PRIVATE_KEY: ${{secrets.private_key}}
|
|
- run: gpg --output ${{inputs.bin || inputs.crate}}.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 ${{inputs.bin || inputs.crate}}.sig ${{steps.which.outputs.which}}
|
|
- uses: softprops/action-gh-release@v1
|
|
with:
|
|
tag_name: ${{inputs.crate}}
|
|
files: |
|
|
${{steps.which.outputs.which}}
|
|
${{inputs.bin || inputs.crate}}.sig
|
|
fail_on_unmatched_files: true
|