From 846e3e32ce19375f11301a961595cffbf893815a Mon Sep 17 00:00:00 2001 From: nicholaspai <9457025+nicholaspai@users.noreply.github.com> Date: Mon, 2 Oct 2023 13:45:23 -0400 Subject: [PATCH] improve: Add .github actions under workflow/ directory (#3) Must store YAML files under `.github/workflows` according to [docs](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions) --- .github/{ => workflows}/publish.yml | 0 package.json | 5 ++++- 2 files changed, 4 insertions(+), 1 deletion(-) rename .github/{ => workflows}/publish.yml (100%) diff --git a/.github/publish.yml b/.github/workflows/publish.yml similarity index 100% rename from .github/publish.yml rename to .github/workflows/publish.yml diff --git a/package.json b/package.json index 60810fd..9e10986 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,15 @@ { "name": "@across-protocol/constants-v2", - "version": "1.0.0", + "version": "1.0.1", "description": "Export commonly re-used values for Across repositories", "repository": "https://github.com/across-protocol/constants-v2.git", "author": "hello@umaproject.org", "license": "MIT", "private": false, "type": "module", + "files": [ + "/dist/**/*" + ], "scripts": { "lint": "yarn eslint && yarn prettier --list-different", "lint-fix": "yarn eslint --fix && yarn prettier --write",