simp-test 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/tag_deploy_rubygem.yml +4 -10
- data/lib/simp/test/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f43822c09fc73ea1003786ae0681c876eadbc54dac9cec5f81faf75ad54e3a91
|
|
4
|
+
data.tar.gz: a69ce259dccb6cf1d2ae1e338208697ed11ab6c17182b7e4560b0e0eb08dc66d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '02749f2ae69d9f1cb302675d46d0c89dc26c3e0acb9e0cb419097b46c0882e5cda32d89618f4e4bff6d34453b4bb9a494db6942aed8e127ac27f242a7e301ab5'
|
|
7
|
+
data.tar.gz: f7b66193010a858369e1f7b57b64052d2a320388d891f4622629caee7c1261797f7b6578f972eb312a4625167624986123119f4829eece7f4f319ff41585baf0
|
|
@@ -36,16 +36,6 @@ env:
|
|
|
36
36
|
LOCAL_WORKFLOW_CONFIG_FILE: .github/workflows.local.json
|
|
37
37
|
|
|
38
38
|
jobs:
|
|
39
|
-
dump_contexts:
|
|
40
|
-
name: 'Examine Context contents'
|
|
41
|
-
if: github.repository_owner == 'simp'
|
|
42
|
-
runs-on: ubuntu-16.04
|
|
43
|
-
steps:
|
|
44
|
-
- name: Dump contexts
|
|
45
|
-
env:
|
|
46
|
-
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
47
|
-
run: echo "$GITHUB_CONTEXT"
|
|
48
|
-
|
|
49
39
|
releng-checks:
|
|
50
40
|
name: "RELENG checks"
|
|
51
41
|
if: github.repository_owner == 'simp'
|
|
@@ -83,6 +73,10 @@ jobs:
|
|
|
83
73
|
bundler-cache: true
|
|
84
74
|
- name: Test build the package
|
|
85
75
|
run: "${{ steps.commands.outputs.build_command }}"
|
|
76
|
+
- name: "Assert '${{ github.ref }}' matches the package version"
|
|
77
|
+
run: |
|
|
78
|
+
tag="${GITHUB_REF/refs\/tags\//}"
|
|
79
|
+
[ -f pkg/*-${tag}.gem ] || { echo "::error ::tag '${tag}' does not match package $(ls -1 pkg/*.gem)"; exit 1 ; }
|
|
86
80
|
|
|
87
81
|
create-github-release:
|
|
88
82
|
name: Deploy GitHub Release
|
data/lib/simp/test/version.rb
CHANGED