Skip to content

Commit

Permalink
fix(ci): Add gh-account to CI validation
Browse files Browse the repository at this point in the history
  • Loading branch information
bengreenier committed Oct 29, 2021
1 parent cba3c32 commit d8a2e64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -24,6 +24,7 @@ jobs:
type: ["lib", "bin"]
version: ["0.1.0"]
description: ["desc"]
gh_account: ["bengreenier"]
env:
NAME: ${{ format('{0}-{1}', matrix.template, matrix.type) }}

Expand All @@ -36,7 +37,7 @@ jobs:
with:
name: ${{ env.NAME }}
subfolder: ${{ matrix.template }}
other: ${{ format('--{0} --define version={1} --define description={2}', matrix.type, matrix.version, matrix.description) }}
other: ${{ format('--{0} --define version={1} --define description={2} --define gh-account={3}', matrix.type, matrix.version, matrix.description, matrix.gh_account) }}
# we need to move the generated project to a temp folder, away from the template project
# otherwise `cargo` runs would fail
# see https://github.com/rust-lang/cargo/issues/9922
Expand Down

0 comments on commit d8a2e64

Please sign in to comment.