Skip to content
This repository has been archived by the owner on May 25, 2023. It is now read-only.

Commit

Permalink
fix: correct dependabot update spam behaviour (#1397)
Browse files Browse the repository at this point in the history
* build: update deps and restore offline first npm capabilities

* fix: disable dependabot update behaviour

closes #1388

* fix: correct diagram generation and artifact
  • Loading branch information
0-vortex authored Feb 4, 2022
1 parent f96b992 commit 0600ab3
Show file tree
Hide file tree
Showing 5 changed files with 506 additions and 418 deletions.
21 changes: 0 additions & 21 deletions .github/dependabot.yml

This file was deleted.

16 changes: 13 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,12 @@ jobs:
output_file: "public/diagram.svg"
should_push: false
root_path: "src/"
artifact_name: "diagram"

- name: "📊 visualiser artifacts"
uses: actions/upload-artifact@v2
with:
name: diagram
path: public/diagram.svg

- name: "🚀 static app"
run: npm run build
Expand All @@ -107,6 +112,11 @@ jobs:
with:
fetch-depth: 0

- name: "♻️ clean up artifact paths"
run: |
rm -rf public/diagram.svg
rm -rf supabase/diagrams/
- name: "📂 download docker artifacts"
uses: actions/download-artifact@v2
with:
Expand All @@ -128,11 +138,11 @@ jobs:
uses: actions/download-artifact@v2
with:
name: diagram
path: .
path: public/

- name: "🚀 release"
id: semantic-release
uses: open-sauced/semantic-release-conventional-config@v3
uses: open-sauced/release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ engine-strict=true
format-package-lock=true
lockfile-version=3
loglevel="info"
prefer-offline=true
prefer-offline=false
progress=false
save-exact=false
timing=false
Expand Down
Loading

0 comments on commit 0600ab3

Please sign in to comment.