13 lines
276 B
YAML
13 lines
276 B
YAML
|
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 }}"
|