Final Release #11
Workflow file for this run
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: Deploy Project | |
on: | |
release: | |
types: [published] | |
jobs: | |
Deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [19.x] | |
steps: | |
- name: Pull Project | |
uses: actions/checkout@v3.2.0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3.5.1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Packages | |
run: npm i | |
- name: Build Project | |
run: npm run build | |
- name: Publish to bbn.one | |
uses: garygrossgarten/github-action-scp@v0.7.3 | |
with: | |
local: ./build | |
remote: /root/memoriter/web | |
host: ${{ secrets.HOST }} | |
port: ${{ secrets.PORT }} | |
username: ${{ secrets.USERNAME }} | |
privateKey: ${{ secrets.KEY }} | |
- name: Deploy | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.KEY }} | |
port: ${{ secrets.PORT }} | |
script: cd memoriter/ && docker compose up -d --pull always memoriter-web |