Skip to content

Commit

Permalink
remove unused workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dhanifajar15 committed Aug 13, 2024
1 parent 85d5a49 commit e981f4f
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 248 deletions.
112 changes: 0 additions & 112 deletions .github/workflows/build_test_lint.yml

This file was deleted.

99 changes: 0 additions & 99 deletions .github/workflows/deploy_app.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/deploy_docs.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/publish_app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Smart Form App Publish Workflow
on:
push:
branches: ['main']

jobs:
publish:
name: Publish App to Nexus Repository
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
- 20.16
os:
- ubuntu-latest
steps:
- name: Prepare Checkout
uses: actions/checkout@v3

- name: Set Up Node JS
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
check-latest: false

- name: Installing Packages
run: npm install

- name: Set up npm
run: |
echo "registry=https://repository.konsulin.care/repository/smart-forms/" > .npmrc
echo "//repository.konsulin.care/repository/smart-forms/:_authToken=${{ SECRETS.NPM_TOKEN }}" >> .npmrc
- name: Publish npm package
run: npm publish

0 comments on commit e981f4f

Please sign in to comment.