Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
dist/** -diff linguist-generated=true
/.yarn/releases/** binary
/.yarn/plugins/** binary
4 changes: 3 additions & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
node-version: 16.x

- name: Install dependencies
run: yarn install --frozen-lockfile
run: |
yarn set version berry
yarn install --frozen-lockfile

- name: Rebuild the dist/ directory
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
yarn set version berry
yarn install --frozen-lockfile
- run: |
yarn run all
Expand Down
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,12 @@ Thumbs.db
# Ignore built ts files
__tests__/runner/*
lib/**/*

# Yarn v3
.pnp.*
.yarn/cache
.yarn/patches
.yarn/plugins
.yarn/sdks
.yarn/versions
.yarn/install-state.gz
874 changes: 874 additions & 0 deletions .yarn/releases/yarn-3.6.0.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.6.0.cjs
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "typescript-action",
"name": "create-envfile",
"version": "2.0.0",
"private": true,
"description": "TypeScript template action",
"description": "Github Action to create a .env file with Github Secrets ",
"main": "lib/main.js",
"scripts": {
"build": "tsc --project tsconfig.build.json",
Expand All @@ -14,14 +14,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
"url": "git+https://github.com/SpicyPizza/create-envfile"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"author": "Forest Anderson",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0"
Expand All @@ -37,5 +37,6 @@
"js-yaml": "^4.1.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
},
"packageManager": "[email protected]"
}
Loading