We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15217d7 commit 2a69a8dCopy full SHA for 2a69a8d
.github/workflows/cd.yml
@@ -2,9 +2,7 @@
2
name: CD
3
4
on:
5
- workflow_dispatch:
6
- push:
7
- tags: ["v*"]
+ workflow_call:
8
9
concurrency:
10
group: ${{ github.workflow }}-${{ github.ref }}
@@ -59,9 +57,9 @@
59
57
- name: Smoke gem install
60
58
if: matrix.ruby-platform == 'ignore-for-now-x86_64-linux' # GitHub actions architecture
61
run: |
62
- gem install pkg/fast_code_owners-*.gem --verbose
63
- script="puts FastCodeOwners::VERSION"
64
- ruby -rfast_code_owners -e "$script" | grep 0.1.0
+ gem install pkg/code_ownership-*.gem --verbose
+ script="puts CodeOwnership::VERSION"
+ ruby -rcode_ownership -e "$script" | grep 0.1.0
65
echo "✅ Successfully gem installed"
66
67
release:
0 commit comments