mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
switching ubuntu back and removing line continuation
This commit is contained in:
parent
9d3a573e00
commit
4bf515200a
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
@ -10,7 +10,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cloc:
|
cloc:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@ -227,7 +227,7 @@ jobs:
|
|||||||
# This process seems independent from the others
|
# This process seems independent from the others
|
||||||
build_snap:
|
build_snap:
|
||||||
name: Build Snap
|
name: Build Snap
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@ -261,8 +261,7 @@ jobs:
|
|||||||
cd ./dist/snap
|
cd ./dist/snap
|
||||||
snapcraft
|
snapcraft
|
||||||
|
|
||||||
sha256sum bw_${{ env.PACKAGE_VERSION }}_amd64.snap | \
|
sha256sum bw_${{ env.PACKAGE_VERSION }}_amd64.snap | awk '{split($0, a); print a[1]}' > bw-snap-sha256-${{ env.PACKAGE_VERSION }}.txt
|
||||||
awk '{split($0, a); print a[1]}' > bw-snap-sha256-${{ env.PACKAGE_VERSION }}.txt
|
|
||||||
|
|
||||||
- name: Install Snap
|
- name: Install Snap
|
||||||
run: sudo snap install ./dist/snap/bw*.snap --dangerous
|
run: sudo snap install ./dist/snap/bw*.snap --dangerous
|
||||||
@ -295,7 +294,7 @@ jobs:
|
|||||||
|
|
||||||
publish_snap:
|
publish_snap:
|
||||||
name: Publish Snap
|
name: Publish Snap
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-latest
|
||||||
needs: build_snap
|
needs: build_snap
|
||||||
if: github.event_name == 'release'
|
if: github.event_name == 'release'
|
||||||
steps:
|
steps:
|
||||||
@ -341,7 +340,7 @@ jobs:
|
|||||||
# Could be moved out a level
|
# Could be moved out a level
|
||||||
publish_npm:
|
publish_npm:
|
||||||
name: Publish NPM
|
name: Publish NPM
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: build
|
||||||
if: github.event_name == 'release'
|
if: github.event_name == 'release'
|
||||||
steps:
|
steps:
|
||||||
|
Loading…
Reference in New Issue
Block a user