-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: port to vib-action, add dependabot config (#38)
- Loading branch information
Showing
11 changed files
with
27 additions
and
28 deletions.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" |
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
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 |
---|---|---|
|
@@ -18,17 +18,14 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Vib | ||
run: | | ||
wget https://github.com/Vanilla-OS/Vib/releases/download/v0.3.1/vib | ||
chmod +x vib | ||
./vib build recipe.yml | ||
- uses: vanilla-os/[email protected] | ||
|
||
- name: Build the Docker image | ||
run: docker image build -f Containerfile --tag ghcr.io/vanilla-os/desktop:main . | ||
|
||
# Push the image to GHCR (Image Registry) | ||
- name: Push To GHCR | ||
if: github.repository == 'vanilla-os/desktop-image' | ||
run: | | ||
docker login ghcr.io -u ${{ env.REGISTRY_USER }} -p ${{ env.REGISTRY_PASSWORD }} | ||
docker image push "ghcr.io/vanilla-os/desktop:main" |
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 |
---|---|---|
|
@@ -13,16 +13,12 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Vib | ||
run: | | ||
wget https://github.com/Vanilla-OS/Vib/releases/download/v0.3.1/vib | ||
chmod +x vib | ||
./vib build recipe.yml | ||
- uses: vanilla-os/[email protected] | ||
|
||
- name: Build the Docker image | ||
run: docker image build -f Containerfile --tag vanillaos/desktop . | ||
|
||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: Containerfile | ||
path: Containerfile |
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,2 +1,2 @@ | ||
binder_linux | ||
ashmem_linux | ||
ashmem_linux |
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,2 +1,2 @@ | ||
KERNEL=="binder", NAME="%k", MODE="0666" | ||
KERNEL=="ashmem", NAMe="%k", MODE="0666" | ||
KERNEL=="ashmem", NAMe="%k", MODE="0666" |
2 changes: 1 addition & 1 deletion
2
...udes.container/usr/share/glib-2.0/schemas/90-vanilla-gnome-vso-extension.gschema.override
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,3 @@ | ||
[org.gnome.shell] | ||
enabled-extensions=['[email protected]'] | ||
disable-user-extensions=false | ||
disable-user-extensions=false |
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
21 changes: 11 additions & 10 deletions
21
includes.container/usr/share/vso/apx/package-managers/apt.yaml
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,13 +1,14 @@ | ||
name: apt | ||
model: 2 | ||
needsudo: true | ||
cmdautoremove: autoremove | ||
cmdclean: clean | ||
cmdinstall: install | ||
cmdlist: list | ||
cmdpurge: purge | ||
cmdremove: remove | ||
cmdsearch: search | ||
cmdshow: show | ||
cmdupdate: update | ||
cmdupgrade: upgrade | ||
cmdautoremove: apt autoremove | ||
cmdclean: apt clean | ||
cmdinstall: apt install | ||
cmdlist: apt list | ||
cmdpurge: apt purge | ||
cmdremove: apt remove | ||
cmdsearch: apt search | ||
cmdshow: apt show | ||
cmdupdate: apt update | ||
cmdupgrade: apt upgrade | ||
builtin: true |
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 |
---|---|---|
|
@@ -21,4 +21,3 @@ modules: | |
type: shell | ||
commands: | ||
- apt install -y linux-headers-amd64 | ||
|
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