From a43160348ac94a9b857c912dad698e45bdd44322 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Tue, 19 Nov 2019 12:44:39 +0100 Subject: [PATCH] try original github action --- .github/workflows/release.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3765026..a74759c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,14 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - uses: actions/checkout@master - - uses: brpaz/action-semantic-release@v1 + - name: Semantic Release + uses: cycjimmy/semantic-release-action@v2 + id: semantic # Need an `id` for output variables with: - dry_run: "false" branch: master + semantic_version: latest + extra_plugins: | + @semantic-release/git + @semantic-release/changelog@3.0.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}