-
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.
converted main.workflow to Actions V2 yml files
- Loading branch information
1 parent
dcc5a54
commit ab16e32
Showing
3 changed files
with
42 additions
and
38 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,26 @@ | ||
on: push | ||
name: Check & Release | ||
jobs: | ||
shfmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: shfmt | ||
uses: bltavares/actions/shfmt@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SHFMT_ARGS: -i 2 -ci | ||
- name: lint | ||
uses: docker://cdssnc/docker-lint-github-action | ||
with: | ||
args: --ignore DL3007 --ignore DL3018 | ||
- name: filter tag | ||
uses: actions/bin/filter@3c0b4f0e63ea54ea5df2914b4fabf383368cd0da | ||
with: | ||
args: tag | ||
- name: Create GitHub release | ||
uses: Roang-zero1/github-create-release-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
UPDATE_EXISTING: "y" | ||
VERSION_REGEX: ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+ |
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,16 @@ | ||
# CHANGELOG | ||
|
||
## v1.0.2 | ||
|
||
* Migrate to Actions V2 yml files | ||
|
||
## v1.0.1 | ||
|
||
* Fix linting issues | ||
* Update Dockerfile | ||
* Update README | ||
* Update workflow | ||
|
||
## v1.0.0 | ||
|
||
Initial Release |