Skip to content

Are sensors inaccurate? #248

Are sensors inaccurate?

Are sensors inaccurate? #248

name: Build and Deploy ARC3N
on:
workflow_dispatch:
issues:
types: [opened, reopened, edited, closed, deleted]
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Clone Font Awesome Overwrites ✌️
uses: actions/checkout@v4
with:
repository: abunai-dev/UncertaintySourceArchive-overwrites
path: UncertaintySourceArchive/fonts
token: ${{ secrets.OVERWRITES_READONLY_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install, Fetch and Build 🔧
working-directory: UncertaintySourceArchive
run: |
npm install
npm run fetch-uncertainties
npm run build
- name: Deploy 🚀
uses: burnett01/[email protected]
with:
switches: -avzr --delete
path: UncertaintySourceArchive/dist/
remote_path: /home/${{ secrets.USERNAME }}/html/${{ vars.TARGET }}
remote_host: ${{ secrets.SERVER }}
remote_user: ${{ secrets.USERNAME }}
remote_key: ${{ secrets.PRIVATE_KEY }}