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.
1 parent ab9052f commit 75c431eCopy full SHA for 75c431e
.github/workflows/deploy.yml
@@ -17,7 +17,6 @@ jobs:
17
permissions:
18
contents: read
19
packages: write
20
-
21
steps:
22
- name: Checkout repository
23
uses: actions/checkout@v4
@@ -51,4 +50,14 @@ jobs:
51
50
tags: |
52
${{ steps.prep.outputs.image_name }}:latest
53
${{ steps.prep.outputs.image_name }}:${{ github.sha }}
54
+
+ - name: Trigger Railway redeployments
55
+ if: success()
56
+ uses: docker://ghcr.io/railwayapp/cli:latest
57
+ env:
58
+ RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}
59
+ with:
60
+ args: |
61
+ redeploy --service=${{ secrets.RAILWAY_ID_COLLECTOR }} &&
62
+ redeploy --service=${{ secrets.RAILWAY_ID_PRICES }} &&
63
+ redeploy --service=${{ secrets.RAILWAY_ID_OTOKEN }}
0 commit comments