mirror of
https://github.com/BloopAI/setup-zig.git
synced 2026-08-24 12:28:35 +00:00
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7d7611829d | ||
|
|
94c7f0924b | ||
|
|
1956e0fd25 | ||
|
|
3b3df5d7b4 | ||
|
|
5c615af1ba | ||
|
|
338494c8e7 | ||
|
|
0682612436 | ||
|
|
e0b50aeddc | ||
|
|
9e94a59e72 | ||
|
|
8a91458b3f | ||
|
|
964137ae91 | ||
|
|
7e9cfe8742 | ||
|
|
23860f7d57 |
21
.github/workflows/build.yml
vendored
Normal file
21
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Build
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'default'
|
||||
- 'v[0-9]+'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- 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}}
|
||||
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## 1.2.5
|
||||
* Update dependencies to fix #11.
|
||||
|
||||
## 1.2.4
|
||||
* Update dependencies simple-get and ncc.
|
||||
|
||||
## 1.2.3
|
||||
* Configure Actions to build releases automatically.
|
||||
|
||||
## 1.2.2
|
||||
* Update examples. (#7)
|
||||
* Upgrade dependencies.
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
name: 'Setup Zig'
|
||||
description: 'Setup a Zig compiler and add it to the path'
|
||||
icon: play
|
||||
color: orange
|
||||
branding:
|
||||
icon: play
|
||||
color: orange
|
||||
author: 'goto-bus-stop'
|
||||
inputs:
|
||||
version:
|
||||
|
||||
8493
dist/index.js
vendored
8493
dist/index.js
vendored
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "setup-zig",
|
||||
"description": "Use the zig compiler in your Github Action",
|
||||
"version": "1.2.2",
|
||||
"version": "1.2.5",
|
||||
"author": "Renée Kooi <renee@kooi.me>",
|
||||
"bugs": {
|
||||
"url": "https://github.com/goto-bus-stop/setup-zig/issues"
|
||||
@@ -10,10 +10,10 @@
|
||||
"@actions/core": "^1.2.2",
|
||||
"@actions/tool-cache": "^1.3.1",
|
||||
"semver": "^7.1.3",
|
||||
"simple-get": "^3.1.0"
|
||||
"simple-get": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@zeit/ncc": "^0.21.1",
|
||||
"@vercel/ncc": "^0.24.1",
|
||||
"standard": "^14.3.1"
|
||||
},
|
||||
"homepage": "https://github.com/goto-bus-stop/setup-zig",
|
||||
|
||||
Reference in New Issue
Block a user