Skip to content

Commit

Permalink
converted main.workflow to Actions V2 yml files
Browse files Browse the repository at this point in the history
  • Loading branch information
Roang-zero1 committed Oct 1, 2019
1 parent dcc5a54 commit ab16e32
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 38 deletions.
38 changes: 0 additions & 38 deletions .github/main.workflow

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/push.yml
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:]]+
16 changes: 16 additions & 0 deletions CHANGELOG.md
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

0 comments on commit ab16e32

Please sign in to comment.