From 0e652a2b489b4d7c82368c74b9c98e2c10ec27fd Mon Sep 17 00:00:00 2001 From: Aditya Darma Date: Tue, 8 Oct 2024 08:18:59 +0800 Subject: [PATCH] ci: make ci/cd on dev --- .github/lock.yml | 26 -------------------------- .github/stale.yml | 24 ------------------------ .github/workflows/release.yml | 2 +- package.json | 2 +- 4 files changed, 2 insertions(+), 52 deletions(-) delete mode 100644 .github/lock.yml delete mode 100644 .github/stale.yml diff --git a/.github/lock.yml b/.github/lock.yml deleted file mode 100644 index 74eee94..0000000 --- a/.github/lock.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -ignoreUnless: { { STALE_BOT } } ---- -# Configuration for Lock Threads - https://github.com/dessant/lock-threads-app - -# Number of days of inactivity before a closed issue or pull request is locked -daysUntilLock: 60 - -# Skip issues and pull requests created before a given timestamp. Timestamp must -# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable -skipCreatedBefore: false - -# Issues and pull requests with these labels will be ignored. Set to `[]` to disable -exemptLabels: ['Type: Security'] - -# Label to add before locking, such as `outdated`. Set to `false` to disable -lockLabel: false - -# Comment to post before locking. Set to `false` to disable -lockComment: > - This thread has been automatically locked since there has not been - any recent activity after it was closed. Please open a new issue for - related bugs. - -# Assign `resolved` as the reason for locking. Set to `false` to disable -setLockReason: false diff --git a/.github/stale.yml b/.github/stale.yml deleted file mode 100644 index 8b47808..0000000 --- a/.github/stale.yml +++ /dev/null @@ -1,24 +0,0 @@ ---- -ignoreUnless: { { STALE_BOT } } ---- -# Number of days of inactivity before an issue becomes stale -daysUntilStale: 60 - -# Number of days of inactivity before a stale issue is closed -daysUntilClose: 7 - -# Issues with these labels will never be considered stale -exemptLabels: - - 'Type: Security' - -# Label to use when marking an issue as stale -staleLabel: 'Status: Abandoned' - -# Comment to post when marking an issue as stale. Set to `false` to disable -markComment: > - This issue has been automatically marked as stale because it has not had - recent activity. It will be closed if no further activity occurs. Thank you - for your contributions. - -# Comment to post when closing a stale issue. Set to `false` to disable -closeComment: false diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 135433b..c782743 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: with: node-version: '20.x' registry-url: 'https://registry.npmjs.org' - - run: npm ci + - run: npm run build - run: npm publish --provenance --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/package.json b/package.json index 249700e..e5e3b23 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@adityadarma/adonis-datatables", "description": "", - "version": "0.0.0", + "version": "1.0.0", "engines": { "node": ">=20.6.0" },