Skip to content

Commit

Permalink
Merge pull request #139 from AthennaIO/develop
Browse files Browse the repository at this point in the history
Publish make templates
  • Loading branch information
jlenon7 authored Aug 9, 2023
2 parents 3cd9058 + 6d62ea8 commit 20e8b83
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 20 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,16 @@ jobs:
run: npm run build

- name: Copy README to build
run: cp README.md build/README.md
run: cp README.md build/README.md | true

- name: Copy LICENSE to build
run: cp LICENSE.md build/LICENSE.md
run: cp LICENSE.md build/LICENSE.md | true

- name: Copy templates to build
run: cp -r templates build/templates | true

- name: Copy configurer to build
run: cp -r configurer build/configurer | true

- name: Automatic GitHub Release
uses: justincy/[email protected]
Expand Down
11 changes: 0 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,6 @@ on:
- develop

jobs:
qodana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@main
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}

linux:
runs-on: ubuntu-latest
strategy:
Expand Down
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,14 @@ out
.pnp.*

# Compiled code
./dist
./build
dist
build
*.js
*.d.ts
*.js.map
!tests/Stubs/**/*.js
!tests/Stubs/**/*.d.ts
!tests/Stubs/**/*.js.map
!tests/stubs/**/*.js
!tests/stubs/**/*.d.ts
!tests/stubs/**/*.js.map

# IDE
.idea
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@athenna/artisan",
"version": "4.0.0",
"version": "4.1.0",
"description": "The Athenna CLI application. Built on top of commander and inspired in @adonisjs/ace.",
"license": "MIT",
"author": "João Lenon <[email protected]>",
Expand All @@ -27,7 +27,8 @@
"src/*.d.ts",
"src/**/*.js",
"src/**/*.d.ts",
"templates"
"templates",
"configurer"
],
"type": "module",
"main": "./src/index.js",
Expand Down

0 comments on commit 20e8b83

Please sign in to comment.