commit 3171fcc40c2ff2a2c89eb1ec7ac81b14526b8578 Author: Madeorsk Date: Mon Jan 13 23:07:09 2025 +0100 Initial configuration and Dockerfile. diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml new file mode 100644 index 0000000..b699731 --- /dev/null +++ b/.forgejo/workflows/build.yaml @@ -0,0 +1,12 @@ +on: + push: + tags: + - "*" +jobs: + build_docker: + runs-on: docker + container: + image: gcr.io/kaniko-project/executor:v1.23.2 + steps: + - uses: actions/checkout@v4 + - run: /kaniko/executor --destination "zeptotech/zig-yarn:${{ github.ref_name }}" diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8dc0491 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM node:alpine + +ADD https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz zig.tar.xz +RUN tar xvf zig.tar.xz && mv zig-linux-x86_64-0.13.0 /zig