Initial configuration and Dockerfile.
Some checks failed
/ build_docker (push) Failing after 4s

This commit is contained in:
Madeorsk 2025-01-13 23:07:09 +01:00
commit 3171fcc40c
Signed by: Madeorsk
GPG key ID: 677E51CA765BB79F
2 changed files with 16 additions and 0 deletions

View file

@ -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 }}"

4
Dockerfile Normal file
View file

@ -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