From 14fbd7d08917dfa2aa10b44fa5d6bb6cb2831d43 Mon Sep 17 00:00:00 2001 From: ztimson Date: Tue, 19 Dec 2023 23:35:05 -0500 Subject: [PATCH] Added publish steps --- .github/workflows/build.yaml | 12 +++++++++--- package-lock.json | 6 +++--- package.json | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2ba9c17..eb06940 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -9,7 +9,10 @@ jobs: build: name: Build NPM Project runs-on: ubuntu-latest - container: node + container: + image: node + volumes: + - '/mnt/swarm/gitea/runner/cache:/cache' steps: - name: Clone Repository uses: ztimson/actions/clone@develop @@ -54,11 +57,14 @@ jobs: tag: ${{env.VERSION}} publish: - name: Tag Version + name: Publish needs: build if: ${{github.ref_name}} == 'release' runs-on: ubuntu-latest - container: node + container: + image: node + volumes: + - '/mnt/swarm/gitea/runner/cache:/cache' steps: - name: Clone Repository uses: ztimson/actions/clone@develop diff --git a/package-lock.json b/package-lock.json index 50a5c25..5d459eb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,13 +1,13 @@ { - "name": "perstistance", + "name": "persist", "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "perstistance", + "name": "persist", "version": "1.0.0", - "license": "Apache 2.0", + "license": "MIT", "devDependencies": { "@types/jest": "^29.5.11", "jest": "^29.7.0", diff --git a/package.json b/package.json index 526e97a..86e49c1 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "perstistance", + "name": "persist", "version": "1.0.0", "description": "Sync variables with the local/session storage using proxy objects & decorators", "repository": "https://git.zakscode.com/ztimson/persistance",