chore: bump Vib to v0.6.2

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
K.B.Dharun Krishna 2024-04-10 19:40:03 +05:30 committed by Tau
parent cbfc5cf8f2
commit 171b12a59a
3 changed files with 71 additions and 66 deletions

View file

@ -91,10 +91,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: vanilla-os/vib-gh-action@v0.3.3-1 - uses: vanilla-os/vib-gh-action@v0.6.2
with: with:
recipe: 'recipe.yml' recipe: 'recipe.yml'
plugins: 'Vanilla-OS/vib-fsguard:v1.2-1' plugins: 'Vanilla-OS/vib-fsguard:v1.3-2'
- name: Generate image name - name: Generate image name
run: | run: |

View file

@ -13,10 +13,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: vanilla-os/vib-gh-action@v0.3.3-1 - uses: vanilla-os/vib-gh-action@v0.6.2
with: with:
recipe: 'recipe.yml' recipe: 'recipe.yml'
plugins: 'Vanilla-OS/vib-fsguard:v1.2-1' plugins: 'Vanilla-OS/vib-fsguard:v1.3-2'
- name: Build the Docker image - name: Build the Docker image
run: docker image build -f Containerfile --tag testing . run: docker image build -f Containerfile --tag testing .

View file

@ -1,51 +1,56 @@
base: ghcr.io/vanilla-os/desktop:main
name: Custom Vanilla Desktop name: Custom Vanilla Desktop
id: vanilla-custom id: vanilla-custom
labels: stages:
- id: build
base: ghcr.io/vanilla-os/desktop:main
singlelayer: false
labels:
maintainer: self-maintained maintainer: self-maintained
args: args:
DEBIAN_FRONTEND: noninteractive DEBIAN_FRONTEND: noninteractive
runs:
- echo 'APT::Install-Recommends "1";' > /etc/apt/apt.conf.d/01norecommends
modules: modules:
- name: init-setup - name: init-setup
type: shell type: shell
commands: commands:
- lpkg --unlock - lpkg --unlock
- apt-get update - apt-get update
# Put your custom actions behind this comment # Put your custom actions behind this comment
- name: example-packages - name: example-packages
type: apt type: apt
source: source:
packages: packages:
- vim - vim
- name: example-commands - name: example-commands
type: shell type: shell
commands: commands:
- echo Example output - echo Example output
- name: example-modules - name: example-modules
type: includes type: includes
includes: includes:
- modules/50-install-debs - modules/50-install-debs.yml
# Put your custom actions before this comment # Put your custom actions before this comment
- name: set-image-name-abroot - name: set-image-name-abroot
type: includes type: includes
includes: includes:
- modules/80-set-image-abroot-config - modules/80-set-image-abroot-config.yml
- name: cleanup - name: cleanup
type: shell type: shell
commands: commands:
- apt-get autoremove -y - apt-get autoremove -y
- apt-get clean - apt-get clean
- lpkg --lock - lpkg --lock
- name: fsguard - name: fsguard
type: fsguard type: fsguard
CustomFsGuard: false CustomFsGuard: false
FsGuardLocation: "/usr/sbin/FsGuard" FsGuardLocation: "/usr/sbin/FsGuard"
@ -59,7 +64,7 @@ modules:
- rm -f ./minisign.pub ./minisign.key - rm -f ./minisign.pub ./minisign.key
- chmod +x /usr/sbin/init - chmod +x /usr/sbin/init
- name: cleanup2 - name: cleanup2
type: shell type: shell
commands: commands:
- rm -rf /tmp/* - rm -rf /tmp/*