Fix the spontaneous deletion, add modals #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-web-app | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build-web-app: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '17' | |
- name: ⛓ Install dependencies from package-lock.json | |
run: npm ci | |
- name: 🛠 Build the Vue app | |
run: npm run build | |
- name: 📬 Upload the output artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: dist | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build-web-app | |
environment: | |
name: production | |
url: https://lunar.exchange/tunic-decoder | |
steps: | |
- run: echo "🧱 Nothing here yet! 🧱" |