forked from dawidd6/action-download-artifact
-
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.
Signed-off-by: marcofaggian <[email protected]>
- Loading branch information
1 parent
179c67b
commit 9d7c680
Showing
4 changed files
with
29 additions
and
169 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,29 @@ | ||
## | ||
# 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: | ||
# Release with semantic tag like v1.0.3 | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.event.release.tag_name }} | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v2 | ||
|
||
# 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 }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.