mirror of
https://github.com/kiegroup/git-backporting.git
synced 2025-07-02 23:53:48 +00:00
Initial BPer implementation
This commit is contained in:
parent
05d156a5b0
commit
f0d9f789fa
59 changed files with 33618 additions and 1048 deletions
28
.github/workflows/publish-gha.yml
vendored
Normal file
28
.github/workflows/publish-gha.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
##
|
||||
# Publish new action tag(s) for downstream consumption
|
||||
##
|
||||
name: Publish
|
||||
|
||||
# Manual or automatic release
|
||||
on:
|
||||
release:
|
||||
types: [published, edited]
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
ref: ${{ github.event.release.tag_name }}
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v3
|
||||
|
||||
# Compile dist/index.js and bundle with action.yml
|
||||
# Force push major and minor tags, e.g. v1, v1.0
|
||||
# See documentation: https://github.com/JasonEtco/build-and-tag-action
|
||||
- uses: JasonEtco/build-and-tag-action@v2
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
Loading…
Add table
Add a link
Reference in a new issue