Skip to content

Commit fcb08ac

Browse files
authored
Merge pull request #4 from kin-lang/feat/online-runtime
feat: online runtime
2 parents 739d079 + 6b6482b commit fcb08ac

File tree

10 files changed

+723
-116
lines changed

10 files changed

+723
-116
lines changed

.github/workflows/docker-image.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Push to personal github account
2+
on:
3+
push:
4+
branches: [main]
5+
6+
jobs:
7+
pushit:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Remove .github, dist, node_modules
12+
run: rsync * ./built -r --exclude .github --exclude dist --exclude node_modules
13+
14+
- name: Remove http.extraheader
15+
run: git config --unset-all http.https://github.com/.extraheader
16+
17+
- name: push to main branch of personal account
18+
uses: cpina/github-action-push-to-another-repository@v1.5.1
19+
env:
20+
API_TOKEN_GITHUB: ${{ secrets.CPINO_TOKEN }}
21+
with:
22+
source-directory: "built"
23+
destination-github-username: "pacifiquem"
24+
destination-repository-name: "kin-editor"
25+
user-email: pacifiquemurangwa001@gmail.com
26+
target-branch: main

Dockerfile

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)