Skip to content

Commit

Permalink
Update nest release action
Browse files Browse the repository at this point in the history
  • Loading branch information
KaindlJulian committed Oct 28, 2022
1 parent 62f8308 commit 66b1b3d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/publish_nest.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
name: publish

on:
workflow_dispatch:
inputs:
version:
description: "Version"
required: true
create:
ref_type: "tag"

jobs:
release:
Expand All @@ -16,8 +13,11 @@ jobs:

- name: Setup Deno
uses: denolib/setup-deno@v2
with:
deno-version: v1.5.x

- name: Publish module
run: |
deno run -A --unstable https://x.nest.land/eggs@0.3.10/eggs.ts link ${{ secrets.NESTAPIKEY }}
deno run -A --unstable https://x.nest.land/eggs@0.3.10/eggs.ts publish --version ${{ github.event.inputs.version }}
deno install -A --unstable https://x.nest.land/eggs@0.3.2/eggs.ts
eggs link ${{ secrets.NESTAPIKEY }}
eggs publish --yes --no-check --version $(git describe --tags $(git rev-list --tags --max-count=1))
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## unreleased
-
## [1.0.0]

- Add Builder API for creating a cache (`Velo.builder()`)
- Add value loading functionality with `VeloLoadingCache`
Expand Down
6 changes: 3 additions & 3 deletions egg.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"version": "0.1.6",
"version": "0.1.5",
"name": "velo",
"description": "Velo provides performant Cache imlementations for Deno. Supports LRU, LFU, ARC and other caching policies.",
"description": "A high-performance caching library for Deno. Supports LRU, LFU, ARC, and TinyLFU.",
"repository": "https://github.com/velo-org/velo",
"stable": true,
"files": ["./src/**/*", "mod.ts", "deps.ts", "README.md", "./media/*"],
"files": ["./src/**/*", "mod.ts", "deps.ts", "README.md"],
"check": true,
"entry": "./mod.ts",
"homepage": "https://github.com/velo-org/velo",
Expand Down

0 comments on commit 66b1b3d

Please sign in to comment.