mirror of
https://github.com/BloopAI/setup-zig.git
synced 2026-08-29 13:18:36 +00:00
* deps: use esbuild * deps: update tool-cache * Fix tool-cache usage (#45) * cache log * log * log * use resolved ver for cache * build * log cache * log * use version as key * deps * loggggggg * method name * improve log * ci: tweak versions * include version for commit deps * trailing * mistake * Use github cache (#53) * Cache the zig compiler locally * logging * npm update * verboser * os.arch * debug * log signal * address https://github.com/actions/toolkit/issues/687 * correct path * add a cache: false option * share size * zigpath * path.join skull * target node12 * changelog: add 1.4.0
22 lines
427 B
YAML
22 lines
427 B
YAML
name: Build
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'default'
|
|
- 'v[0-9]+'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: npm install
|
|
- uses: EndBug/add-and-commit@v4
|
|
with:
|
|
add: dist
|
|
message: Rebuild
|
|
author_name: Automated
|
|
author_email: github@asdf.kooi.me
|
|
env:
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|