From 36c107c92d7639582e04924cf5415224e3a542df Mon Sep 17 00:00:00 2001 From: Carlos Quintana Date: Tue, 2 Aug 2022 17:36:20 +0200 Subject: [PATCH 1/2] Upgrade extension version --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index e59dfb3..3a09c56 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "simplelogin-extension", - "version": "2.6.3", + "version": "2.7.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "simplelogin-extension", - "version": "2.6.3", + "version": "2.7.0", "license": "MIT", "dependencies": { "@fortawesome/fontawesome-svg-core": "^1.2.36", From 4664d20660381fa03d829b083d6163b609fffd5d Mon Sep 17 00:00:00 2001 From: Carlos Quintana Date: Tue, 2 Aug 2022 17:36:27 +0200 Subject: [PATCH 2/2] Fix release process --- .github/workflows/release.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2db5bfc..121c127 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -81,6 +81,9 @@ jobs: variant: ['full', 'lite'] steps: + - name: Build info + run: echo "Starting build process for variant = ${{ matrix.variant }}" + - name: Checkout repository uses: actions/checkout@v2 with: @@ -118,7 +121,7 @@ jobs: npm run generate:buildconfig - name: Build lite version - if: ${{ matrix.variant }} == 'lite' + if: matrix.variant == 'lite' shell: bash run: | npm install @@ -126,7 +129,7 @@ jobs: SUFFIX=lite npm run build-zip - name: Build full version - if: ${{ matrix.variant }} == 'full' + if: matrix.variant == 'full' shell: bash run: | npm install