Skip to content

Commit

Permalink
build: Update build workflows to staging (#179) (#182)
Browse files Browse the repository at this point in the history
* Update package-lock.json

* Update workflows
  • Loading branch information
DaevMithran authored Mar 17, 2023
2 parents 12c4754 + c9db4eb commit 55e256f
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 156 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ updates:

# Maintain dependencies for NPM
- package-ecosystem: "npm"
target-branch: "develop"
directory: "/"
schedule:
interval: "weekly"

# Maintain dependencies for Docker
- package-ecosystem: "docker"
target-branch: "develop"
directory: "/"
schedule:
interval: "weekly"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cleanup-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ on:
description: 'Retain days'
required: true
type: string
default: 30
default: "30"
minimum_runs:
description: 'Minimum runs to keep for each workflow'
required: true
type: string
default: 0
default: "0"
delete_workflow_pattern:
description: 'Name/filename of workflow. Default is all.'
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup-cache-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:

steps:
- name: "Wipe Github Actions cache"
uses: easimon/wipe-cache@v1
uses: easimon/wipe-cache@v2
with:
dry-run: ${{ github.event.inputs.dry-run }}
1 change: 0 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
deploy-staging:
name: "Staging Deploy"
runs-on: ubuntu-latest
continue-on-error: true
env:
IMAGE_NAME: registry.digitalocean.com/${{ github.repository }}
environment:
Expand Down
147 changes: 0 additions & 147 deletions .npmignore

This file was deleted.

2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

## [1.5.1-develop.1](https://github.com/cheqd/credential-service/compare/1.5.0...1.5.1-develop.1) (2023-03-17)

## [1.5.0](https://github.com/cheqd/credential-service/compare/1.4.4...1.5.0) (2023-03-17)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@cheqd/credential-service",
"version": "1.5.0",
"version": "1.5.1-develop.1",
"description": "cheqd Credential Service Backend",
"source": "src/index.ts",
"main": "dist/worker.js",
"main": "dist/index.js",
"license": "Apache-2.0",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"repository": "https://github.com/cheqd/credential-service.git",
"scripts": {
"build": "esbuild src/index.ts --platform=node --bundle --minify --outdir=dist ",
"build": "esbuild src/index.ts --platform=node --bundle --minify --outdir=dist",
"start": "node dist/index.js",
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
Expand All @@ -22,6 +22,12 @@
"prettier"
]
},
"files": [
"dist/**/*",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"@cheqd/did-provider-cheqd": "^3.0.4",
"@veramo/core": "^5.1.2",
Expand Down

0 comments on commit 55e256f

Please sign in to comment.