Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pipeline for building releases #433

Merged
merged 5 commits into from
Feb 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Release browser wallet

on:
# Allows us to run the workflow manually from the Actions tab
workflow_dispatch:

env:
dummy: 1 # change to force cache invalidation
node_version: 18.14.2

jobs:
dependencies:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2

- name: Cache dependencies
id: fetch-dependencies
uses: actions/cache@v2
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ env.dummy }}-${{ hashFiles('**/package.json', '**/yarn.lock') }}

- uses: actions/setup-node@v2
if: steps.fetch-dependencies.outputs.cache-hit != 'true'
with:
node-version: '${{ env.node_version }}'

- name: Download dependencies
if: steps.fetch-dependencies.outputs.cache-hit != 'true'
run: YARN_CHECKSUM_BEHAVIOR=ignore yarn

build-and-upload:
runs-on: ubuntu-20.04
needs: [dependencies]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '${{ env.node_version }}'

- name: Get cached dependencies
uses: actions/cache@v2
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ env.dummy }}-${{ hashFiles('**/package.json', '**/yarn.lock') }}

- name: get-npm-version
id: package-version
uses: martinbeentjes/[email protected]
with:
path: packages/browser-wallet

- name: Build
run: yarn build:all

- name: TypeCheck
run: yarn type:check

- name: Upload release
uses: actions/upload-artifact@master
with:
name: concordium-browser-wallet-${{steps.package-version.outputs.current-version}}
path: ./packages/browser-wallet/dist

- name: Make development build
run: cd ./packages/browser-wallet && yarn build:dev

- name: Upload development release
uses: actions/upload-artifact@master
with:
name: concordium-browser-wallet-${{steps.package-version.outputs.current-version}}-dev
path: ./packages/browser-wallet/dist
Loading