Skip to content

Commit

Permalink
BREAKING: revamp codebase (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
boywithkeyboard authored Sep 12, 2023
1 parent 976e6d2 commit 0e77497
Show file tree
Hide file tree
Showing 9 changed files with 694 additions and 20 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Publish release
uses: boywithkeyboard/taco@dev
- id: publish
name: Publish release
uses: boywithkeyboard/publisher@v1
with:
kind: ${{github.event.inputs.kind}}

- name: Bump major version
run: |
short="v1"
full="${{ steps.publish.outputs.tag_name }}"
short="${full:0:2}"
git tag $short -f
git push --tags -f
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "boywithkeyboard's taco"
description: 'A opinionated production-grade release manager. 🌮'
name: "boywithkeyboard's publisher"
description: 'A opinionated production-grade release manager.'
inputs:
kind:
description: ''
Expand Down Expand Up @@ -30,7 +30,7 @@ inputs:
default: 'false'
branding:
icon: 'arrow-up'
color: 'blue'
color: 'gray-dark'
runs:
using: 'node20'
main: 'action.js'
main: 'src/action.js'
9 changes: 9 additions & 0 deletions deno.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"fmt": {
"semiColons": false,
"singleQuote": true,
"exclude": [
"node_modules"
]
}
}
Loading

0 comments on commit 0e77497

Please sign in to comment.