We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 502ca95 commit af5670aCopy full SHA for af5670a
2 files changed
.github/workflows/deploy.yml
@@ -16,7 +16,6 @@ env:
16
# github.repository as <account>/<repo>
17
IMAGE_NAME: ${{ github.repository }}
18
19
-
20
jobs:
21
build:
22
runs-on: ubuntu-latest
@@ -67,4 +66,4 @@ jobs:
67
66
password: ${{ secrets.TILAA_PASSWORD }}
68
69
- name: Deploy container
70
- run: tilaa container modify --image ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} -i 532
+ run: tilaa container modify --image ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} -i ${{ env.CONTAINER_ID }}
app.py
@@ -6,7 +6,7 @@
6
7
@app.route("/")
8
def hello():
9
- return "Hello stadslab! Running for %d seconds" % (time.time() - now)
+ return "Hello world! Running for %d seconds" % (time.time() - now)
10
11
if __name__ == "__main__":
12
now = time.time()
0 commit comments