alpha
Login
or
Join now
dunkirk.sh
/
smokie
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
feat: add deploy workflow
author
Kieran Klukas
date
1 year ago
(Apr 3, 2025, 10:49 AM -0400)
commit
c99adcca
c99adccaca482085875d787bcfff26a29483b24c
parent
915f279b
915f279b1816c4ef2109cbbb67df99163815eab4
+17
2 changed files
Expand all
Collapse all
Unified
Split
.github
workflows
deploy.yaml
update.sh
+16
.github/workflows/deploy.yaml
Reviewed
···
1
1
+
on:
2
2
+
push:
3
3
+
branches:
4
4
+
- main
5
5
+
jobs:
6
6
+
deploy:
7
7
+
runs-on: ubuntu-latest
8
8
+
steps:
9
9
+
- name: file commands
10
10
+
uses: appleboy/ssh-action@v1
11
11
+
with:
12
12
+
host: hackclub.app
13
13
+
username: kierank
14
14
+
key: ${{ secrets.SSH_KEY }}
15
15
+
port: 22
16
16
+
script_path: update.sh
+1
update.sh
Reviewed
···
1
1
+
cd ~/takes
1
2
git restore bun.lock
2
3
git fetch --all
3
4
git reset --hard origin/main