forked from agenda/agenda
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update node-version in action Hardcode node version Remove old workflow file Rename action file Update tarball action dispatch event Fix error in packageName action step Configuration on actions Ci:
- Loading branch information
Showing
4 changed files
with
3,714 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: RC Agenda releases | ||
|
||
on: | ||
push: | ||
tags: | ||
- v*.* | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 12.9.0 | ||
- run: npm ci | ||
- run: npm run build --if-present | ||
- run: npm pack | ||
- name: Getting package name | ||
id: packageName | ||
run: echo ::set-output name=tarball::$(ls *.tgz) | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: ${{ steps.packageName.outputs.tarball }} | ||
|
||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.