https://github.com/blocklet/action-release-to-github
https://github.com/blocklet/action-release-to-github
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/blocklet/action-release-to-github
- Owner: blocklet
- Created: 2020-11-24T07:09:10.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2022-11-10T07:17:39.000Z (over 3 years ago)
- Last Synced: 2026-02-11T19:19:55.632Z (4 months ago)
- Language: JavaScript
- Size: 896 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# action-release-to-github
Use github action to release blocklet to Github Release
Example workflow
```yml
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: Create Release
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: # after build, use `abtnode bundle --create-release` to bundle your blocklet
- name: Release to Github
uses: blocklet/action-release-to-github@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
```