generated from Vanilla-OS/vib-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add README, feat: add dependabot config
Signed-off-by: K.B.Dharun Krishna <[email protected]>
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
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,3 +1,23 @@ | ||
# vib-dnf | ||
|
||
DNF has been added as a built-in module to Vib directly. So, this repository is no longer required. | ||
This repository contains the Vib (Vanilla Image Builder) plugin for the DNF (Dandified YUM) package manager. | ||
|
||
## Usage | ||
|
||
It can be used in a workflow with the following syntax: | ||
|
||
```yml | ||
- uses: vanilla-os/[email protected] | ||
with: | ||
recipe: 'recipe.yml' | ||
plugins: 'kbdharun/vib-dnf:v0.1' | ||
``` | ||
## Building the plugin | ||
The plugin can be built locally with the following commands: | ||
```sh | ||
go get ./... | ||
go build -trimpath -buildmode=plugin -o dnf.so -v ./... | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" |