diff --git a/.github/workflows/integration-lint-release.yml b/.github/workflows/integration-lint-release.yml index ae18120..b9c7798 100644 --- a/.github/workflows/integration-lint-release.yml +++ b/.github/workflows/integration-lint-release.yml @@ -50,6 +50,11 @@ 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' @@ -57,8 +62,8 @@ jobs: 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