File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Basic
2+ .DS_Store
3+
4+ # Editors
5+ .idea
6+ .vscode
Original file line number Diff line number Diff line change 1+ # GitHub Actions Kubernetes
2+
3+ A collection of GitHub actions for Kubernetes projects.
4+
5+ ## Example Playbook
6+
7+ ``` yaml
8+ - name : Build code
9+ uses : aboutbits/github-actions-kubernetes/xxx@v1
10+ with :
11+ xxx-version : ${{ env.NODE_VERSION }}
12+ ` ` `
13+
14+ ## Versioning
15+
16+ In order to have a verioning in place and working, create leightweight tags that point to the appropriate minor release versions.
17+
18+ Creating a new minor release:
19+
20+ ` ` ` bash
21+ git tag v1
22+ git push --tags
23+ ```
24+
25+ Replacing an already existing minor release:
26+
27+ ``` bash
28+ git tag -d v1
29+ git push origin :refs/tags/v1
30+ git tag v1
31+ git push --tags
32+ ```
33+
34+ ## Information
35+
36+ About Bits is a company based in South Tyrol, Italy. You can find more information about us on [ our website] ( https://aboutbits.it ) .
37+
38+ ### Support
39+
40+ For support, please contact [ info@aboutbits.it ] ( mailto:info@aboutbits.it ) .
41+
42+ ### Credits
43+
44+ - [ All Contributors] ( ../../contributors )
45+
46+ ### License
47+
48+ The MIT License (MIT). Please see the [ license file] ( license.md ) for more information.
Original file line number Diff line number Diff line change 1+ name : ' xxx'
2+
3+ inputs :
4+ xxx-version :
5+ description : ' The xxx version that should be used for the build'
6+ required : true
7+ default : ' xxx'
8+
9+ runs :
10+ using : " composite"
11+ steps :
You can’t perform that action at this time.
0 commit comments