Compare commits

...

6 commits

Author SHA1 Message Date
adbba165a6
fix(ci/cd): Missing apt update, wrong exit code
Some checks failed
Build / build (push) Failing after 54s
2024-09-22 23:13:52 +02:00
d837b6f4ef
fix(ci/cd): Cache apt packages 2024-09-22 23:05:26 +02:00
c700df21c1
chore: Disaable jobs from upstream 2024-09-22 22:59:30 +02:00
9b6eabced0
fix(ci/cd): Wrong variable name when checking for existing builds 2024-09-22 22:52:58 +02:00
7d2df472a6
feat: Add files for nix 2024-09-22 22:23:41 +02:00
ff49aa4da3
feat: Add gitignore 2024-09-22 22:23:18 +02:00
7 changed files with 33 additions and 16 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use nix

View file

@ -13,19 +13,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Docker
run: |
apt-get update
apt-get install docker.io -y
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
platforms: linux/amd64,linux/arm64
- name: Get upstream repository
run: |
@ -34,19 +21,35 @@ jobs:
- name: Extract tags and labels for Docker
id: meta
run: |
echo "$(cd upstream && git describe --tags --abbrev=0 | cut -d 'v' -f2-)"
echo "tag=$(cd upstream && git describe --tags --abbrev=0 | cut -d 'v' -f2-)" >> $GITHUB_OUTPUT
export VERSION="$(cd upstream && git describe --tags --abbrev=0 | cut -d 'v' -f2-)"
echo "Version: ${VERSION}"
echo "tag=${VERSION}" >> $GITHUB_OUTPUT
shell: bash
- name: Check if the image was already built
id: check-build-status
run: |
if curl --silent -f -lSL "https://hub.docker.com/v2/repositories/jiriks74/onlyoffice-documentserver/tags/$(echo ${{ steps.meta.outputs.tags }})" > /dev/null; then echo "Already existst" && exit 1; else echo "Desn't exist" && exit 0; fi
echo ${{ steps.meta.outputs.tag }}
if curl --silent -f -lSL "https://hub.docker.com/v2/repositories/jiriks74/onlyoffice-documentserver/tags/$(echo ${{ steps.meta.outputs.tag }})" > /dev/null; then echo "Already exists" && exit 1; else echo "Desn't exist" && exit 0; fi
- name: Set tag in Dockerfile
run: |
sed -i "s/ARG PACKAGE_VERSION=/ARG PACKAGE_VERSION=$(echo ${{ steps.meta.outputs.tag }} | cut -d ':' -f2)/g" Dockerfile
- name: Update repositories
run: sudo apt update
- name: Install Docker
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: docker.io
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
platforms: linux/amd64,linux/arm64
- name: Login to DockerHub
uses: docker/login-action@v1
with:

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
# Nix, direnv
.direnv

11
default.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs ? (import <nixpkgs> {
config.allowUnfree = true;
}),
}:
pkgs.mkShell {
pure = true;
packages = with pkgs; [
# Choose the build tools that you need
act
];
}