Skip to content

Commit f310611

Browse files
committed
initial commit
0 parents  commit f310611

3 files changed

Lines changed: 65 additions & 0 deletions

File tree

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Basic
2+
.DS_Store
3+
4+
# Editors
5+
.idea
6+
.vscode

readme.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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.

xxx/action.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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:

0 commit comments

Comments
 (0)