We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c9279d0 + 79e1dc4 commit eed1541Copy full SHA for eed1541
.github/workflows/build-public-inbox.yml
@@ -29,3 +29,24 @@ jobs:
29
push: true
30
tags: bitcoindevproject/public-inbox:latest
31
no-cache: true
32
+
33
+ deploy:
34
+ needs: build
35
+ runs-on: ubuntu-latest
36
37
+ steps:
38
+ - name: Checkout
39
+ uses: actions/checkout@v2
40
41
+ - name: Use Node 18
42
+ uses: actions/setup-node@v1
43
+ with:
44
+ node-version: 18.x
45
46
+ - name: Install Railway
47
+ run: npm i -g @railway/cli
48
49
+ - name: Deploy
50
+ run: railway up --service public-inbox
51
+ env:
52
+ RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}
Dockerfile.prod
@@ -0,0 +1,3 @@
1
+FROM bitcoindevproject/public-inbox:latest
2
3
+CMD [ "public-inbox-httpd" ]
0 commit comments