Skip to content

Commit

Permalink
feat: automated npm deploys
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-uniswap committed Feb 13, 2024
1 parent 0d6955f commit ec646c9
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
iname: Release

on:
push:
branches:
- main

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Load secret
uses: 1password/load-secrets-action@d1a4e73495bde3551cf63f6c048588b8f734e21d
with:
# Export loaded secrets as environment variables
export-env: true
env:
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
GITHUB_TOKEN: op://Github-CI-CD/uniswap-open-source-github-token/token
NPM_TOKEN: op://Github-CI-CD/npm-deploy-token/token

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16

- name: Install dependencies
run: yarn --frozen-lockfile

- name: Lint
run: yarn lint
if: success()

- name: Release
env:
NPM_CONFIG_USERCONFIG: /dev/null
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn release
if: success()

0 comments on commit ec646c9

Please sign in to comment.