Skip to content

Commit c0c157a

Browse files
authored
Merge pull request #49 from ether/feature/go
Moved proxy to go
2 parents 67541b6 + 674c855 commit c0c157a

30 files changed

+744
-7896
lines changed

.github/workflows/1maxPadPerInstance.yml

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

.github/workflows/3maxPadPerInstance.yml

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

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v2
11+
- name: Build image
12+
run: |
13+
docker build -t ghcr.io/ether/etherpad-proxy:latest .
14+
- name: Push image
15+
run: |
16+
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
17+
docker push ghcr.io/ether/etherpad-proxy:latest

0 commit comments

Comments
 (0)