From 9252cf2088e4bad8d36bd9d61d5e89b449342f01 Mon Sep 17 00:00:00 2001 From: Jon Long <482527+jonlong@users.noreply.github.com> Date: Sun, 24 Jan 2021 17:33:26 -0500 Subject: [PATCH] testing automated release --- .github/workflows/release.yml | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 79cb124..018b8ba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,8 +9,6 @@ jobs: release: name: Create Release Branch and Tag runs-on: ubuntu-latest - outputs: - tag: 'v${{ steps.vars.outputs.pkg_version }}' steps: - name: Checkout code uses: actions/checkout@v2 @@ -34,12 +32,6 @@ jobs: with: cmd: build - - name: 'web-ext build' - id: web-ext-build - uses: kewisch/action-web-ext@v1 - with: - cmd: build - - name: "web-ext lint" uses: kewisch/action-web-ext@v1 env: @@ -48,20 +40,16 @@ jobs: cmd: lint channel: listed - - name: 'web-ext sign' - id: web-ext-sign + - name: 'web-ext build' + id: web-ext-build uses: kewisch/action-web-ext@v1 with: - cmd: sign - source: ${{ steps.web-ext-build.outputs.target }} - channel: unlisted - apiKey: ${{ secrets.AMO_SIGN_KEY }} - apiSecret: ${{ secrets.AMO_SIGN_SECRET }} - timeout: 900000 + cmd: build - name: 'Create Release' uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - files: ${{ steps.web-ext-sign.outputs.target }} + files: ${{ steps.web-ext-build.outputs.target }} + tag_name: v${{ steps.vars.outputs.pkg_version }}