-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
- Loading branch information
Showing
3 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
# vib-gh-action | ||
|
||
GitHub Action to build a Vib image and optionally push it on a registry | ||
GitHub Action to build a Vib image and optionally push it to a registry. | ||
|
||
## Usage | ||
|
||
See [action.yml](action.yml) | ||
|
||
```yaml | ||
```yml | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: vanilla-os/vib-gh-action@v0.7.0 | ||
- uses: vanilla-os/vib-gh-action@v0.7.1 | ||
with: | ||
recipe: 'myRecipe.yml' | ||
plugins: org/repo:tag,org/repo:tag | ||
``` | ||
default `recipe` value is `recipe.yml`, default `plugins` value is empty. | ||
> [!NOTE] | ||
> The default `recipe` value is `recipe.yml`, default `plugins` value is empty. | ||
|
||
## References | ||
|
||
- [Vib](https://github.com/Vanilla-OS/Vib) | ||
- [Vib plugins](https://github.com/Vanilla-OS/vib-plugin) | ||
- [Vib image example](https://github.com/Vanilla-OS/desktop-image) | ||
- [Vib documentation](https://docs.vanillaos.org/collections/vib) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
VIB_VERSION="0.7.0" | ||
VIB_VERSION="0.7.1" | ||
PLUGINS_ARG="${1:-}" | ||
|
||
if [ -z "$PLUGINS_ARG" ]; then | ||
|