Skip to content

Commit

Permalink
Add none ascii cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
Madoshakalaka committed Nov 19, 2020
1 parent 320e9be commit 8ac1234
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/integration-lint-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,20 @@ jobs:
# ./dist folder is built during integration testing, so just UTF-8 cleaning and zipping are needed
run: node libexec/fix-non-ascii-contentscript.js && node libexec/zip-extension.js

# date will be used as release tag and name
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"

- name: Create Release
id: create_release
if: github.event_name == 'push'
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
tag_name: ${{ steps.date.outputs.date }}
release_name: Release ${{ steps.date.outputs.date }}
# body: |
# Changes in this Release
# - First Change
Expand Down

0 comments on commit 8ac1234

Please sign in to comment.