Was the user the victim of a phising attack? #259
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 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 }} |