Skip to content

Commit

Permalink
ci: update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ns212 committed Feb 28, 2024
1 parent f95f4fb commit 4402bd5
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 40 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
54 changes: 17 additions & 37 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,27 @@
name: "Deploy"
name: "Publish snap to npm"
on:
workflow_dispatch:
inputs:
environment:
description: "Environment to deploy snap"
type: environment
required: true
push:

jobs:
deploy:
publish:
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
timeout-minutes: 10
defaults:
run:
working-directory: ./packages/snap
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- name: install dependencies
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn install
- name: run test
- name: Test
run: yarn test
- name: Build
run: CI=false yarn run build
working-directory: packages/example
run: yarn build
- name: Publish to NPM
run: yarn publish
env:
PROJECT_TOKEN: ${{ secrets.PROJECT_TOKEN }}
BACKEND_API_AUTH: ${{ secrets.BACKEND_API_AUTH }}
BACKEND_API_DOMAIN: ${{ secrets.BACKEND_API_DOMAIN }}
SNAP_BACKEND_API_DOMAIN: ${{ secrets.SNAP_BACKEND_API_DOMAIN }}
SNAP_BACKEND_API_AUTH: ${{ secrets.SNAP_BACKEND_API_AUTH }}
FIAT_MRCR_API_WIDGET_ID: ${{ secrets.FIAT_MRCR_API_WIDGET_ID }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_SOURCE: ${{ secrets.SENTRY_SOURCE }}
SENTRY_PROJECT: bob-snap-${{ inputs.environment }}
ENV: ${{ inputs.environment }}
- name: Publish to S3
working-directory: packages/example
run: |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip -qq awscliv2.zip
sudo ./aws/install --update
aws configure set aws_access_key_id ${{ secrets.AWS_KEY_ID }}
aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws configure set default.region ${{ secrets.AWS_REGION }}
aws s3 sync --exclude "*.map" build/ s3://${{ secrets.BUCKET_NAME }}/ --delete
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ on:
jobs:
test:
runs-on: ubuntu-latest
container: node:16
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn
- name: Run Test
Expand Down

0 comments on commit 4402bd5

Please sign in to comment.