Skip to content

Commit

Permalink
[BRE-494] - bwwl Pre Deployment fix (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeebru authored Jan 2, 2025
1 parent f1de238 commit 0ef6f7a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "build-test"
name: Build & Test
on:
pull_request:

Expand All @@ -9,7 +9,7 @@ defaults:
jobs:
build:
name: Building & testing @bitwarden/sm-action for - ${{ matrix.settings.os }}
runs-on: ${{ matrix.settings.os || 'ubuntu-latest' }}
runs-on: ${{ matrix.settings.os || 'ubuntu-24.04' }}
strategy:
fail-fast: false
matrix:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ defaults:

jobs:
check-dist:
name: Check dist
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Checkout repo
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0

- name: Setup Node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
Expand All @@ -47,7 +49,8 @@ jobs:
fi
# If index.js was different than expected, upload the expected version as an artifact
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4
- name: Upload artifact
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/qa-run.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "qa-run"
name: QA Run
on:
workflow_dispatch:
inputs:
Expand All @@ -18,7 +18,7 @@ on:
jobs:
run:
name: Running QA test on ${{ matrix.settings.os }}
runs-on: ${{ matrix.settings.os || 'ubuntu-latest' }}
runs-on: ${{ matrix.settings.os || 'ubuntu-24.04' }}
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
draft: true

- name: git tag
- name: Git tag
env:
VERSION: ${{ steps.version.outputs.major_version }}
run: git tag -f $VERSION
Expand Down

0 comments on commit 0ef6f7a

Please sign in to comment.