Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Merge pull request #32 from xmtp/np/remove-timestamp-from-read-receipts #37

Merge pull request #32 from xmtp/np/remove-timestamp-from-read-receipts

Merge pull request #32 from xmtp/np/remove-timestamp-from-read-receipts #37

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
# permissions:
# contents: write # to create release (changesets/action)
# issues: write # to post issue comments (changesets/action)
# pull-requests: write # to create pull request (changesets/action)
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.14.0
cache: "yarn"
- name: Install Yarn v3
run: |
corepack enable
corepack prepare [email protected] --activate
- name: Install dependencies
run: yarn
- name: Publish
uses: changesets/action@v1
with:
title: "release: version packages"
commit: "release: version packages"
publish: yarn publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}