13 Commits

Author SHA1 Message Date
Renée Kooi
7d7611829d 1.2.5 2020-10-11 18:21:10 +02:00
Automated
94c7f0924b Rebuild 2020-10-11 16:18:31 +00:00
Renée Kooi
1956e0fd25 trigger rebuild 2020-10-11 18:17:51 +02:00
Renée Kooi
3b3df5d7b4 1.2.4 2020-09-19 15:55:25 +02:00
Automated
5c615af1ba Rebuild 2020-09-19 13:52:14 +00:00
Renée Kooi
338494c8e7 @zeit/ncc → @vercel/ncc 2020-09-19 15:51:38 +02:00
Automated
0682612436 Rebuild 2020-05-18 07:46:44 +00:00
dependabot-preview[bot]
e0b50aeddc Bump simple-get from 3.1.0 to 4.0.0 (#10) 2020-05-18 09:46:18 +02:00
Automated
9e94a59e72 Rebuild 2020-03-24 10:38:05 +00:00
dependabot-preview[bot]
8a91458b3f Bump @zeit/ncc from 0.21.1 to 0.22.0 (#9)
Bumps [@zeit/ncc](https://github.com/zeit/ncc) from 0.21.1 to 0.22.0.
- [Release notes](https://github.com/zeit/ncc/releases)
- [Commits](https://github.com/zeit/ncc/compare/0.21.1...0.22.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-03-24 11:37:38 +01:00
Renée Kooi
964137ae91 1.2.3 2020-03-07 16:11:43 +01:00
Renée Kooi
7e9cfe8742 Fix branding. 2020-03-07 16:08:23 +01:00
Renée Kooi
23860f7d57 Auto-rebuild dist files using Github Actions (#8)
* ci: auto-build the dist files

* Rebuild

* ci: only rebuild on release branches

* ci: support any version branch

Co-authored-by: Automated <github@asdf.kooi.me>
2020-03-07 16:05:55 +01:00
5 changed files with 4673 additions and 3861 deletions

21
.github/workflows/build.yml vendored Normal file
View 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}}

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

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