File tree Expand file tree Collapse file tree 14 files changed +274
-181
lines changed
acceptance/tests/resource/ssh_authorized_key Expand file tree Collapse file tree 14 files changed +274
-181
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
6
6
jobs :
7
- create-github-release :
8
- name : Deploy GitHub Release
9
- runs-on : ubuntu-20.04
10
- steps :
11
- - name : Checkout code
12
- uses : actions/checkout@v4
13
- with :
14
- ref : ${{ github.ref }}
15
- clean : true
16
- fetch-depth : 0
17
- - name : Get Version
18
- id : gv
19
- run : |
20
- echo "::set-output name=ver::$(jq --raw-output .version metadata.json)"
21
- - name : Create Release
22
- uses : actions/create-release@v1
23
- id : create_release
24
- env :
25
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26
- with :
27
- tag_name : " v${{ steps.gv.outputs.ver }}"
28
- draft : false
29
- prerelease : false
30
-
31
- deploy-forge :
32
- name : Deploy to Forge
33
- runs-on : ubuntu-20.04
34
- steps :
35
- - name : Checkout code
36
- uses : actions/checkout@v4
37
- with :
38
- ref : ${{ github.ref }}
39
- clean : true
40
- - name : " PDK Build"
41
- uses : docker://puppet/pdk:nightly
42
- with :
43
- args : ' build'
44
- - name : " Push to Forge"
45
- uses : docker://puppet/pdk:nightly
46
- with :
47
- args : ' release publish --forge-token ${{ secrets.FORGE_API_KEY }} --force'
7
+ release :
8
+ uses : " puppetlabs/cat-github-actions/.github/workflows/module_release.yml@main"
9
+ secrets : " inherit"
Original file line number Diff line number Diff line change
1
+ name : " Release Prep"
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ version :
7
+ description : " Module version to be released. Must be a valid semver string. (1.2.3)"
8
+ required : true
9
+
10
+ jobs :
11
+ release_prep :
12
+ uses : " puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@main"
13
+ with :
14
+ version : " ${{ github.event.inputs.version }}"
15
+ secrets : " inherit"
Original file line number Diff line number Diff line change 16
16
/log /
17
17
/pkg /
18
18
/spec /fixtures /manifests /
19
- /spec /fixtures /modules /
19
+ /spec /fixtures /modules /*
20
20
/tmp /
21
21
/vendor /
22
22
/convert_report.txt
Original file line number Diff line number Diff line change 16
16
/log/
17
17
/pkg/
18
18
/spec/fixtures/manifests/
19
- /spec/fixtures/modules/
19
+ /spec/fixtures/modules/*
20
20
/tmp/
21
21
/vendor/
22
22
/convert_report.txt
26
26
.envrc
27
27
/inventory.yaml
28
28
/spec/fixtures/litmus_inventory.yaml
29
- /appveyor.yml
30
- /.editorconfig
31
29
/.fixtures.yml
32
30
/Gemfile
33
31
/.gitattributes
32
+ /.github/
34
33
/.gitignore
35
- /.gitlab-ci.yml
36
34
/.pdkignore
37
35
/.puppet-lint.rc
38
36
/Rakefile
39
37
/rakelib/
40
38
/.rspec
41
- /.rubocop.yml
42
- /.travis.yml
39
+ /..yml
43
40
/.yardopts
44
41
/spec/
45
42
/.vscode/
You can’t perform that action at this time.
0 commit comments