We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ba0b94 commit 048dbcdCopy full SHA for 048dbcd
.github/workflows/release-web.yml
@@ -0,0 +1,24 @@
1
+name: Validate
2
+on:
3
+ workflow_dispatch:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+jobs:
9
+ validate:
10
+ uses: './.github/workflows/validate.yml'
11
+ secrets: inherit
12
13
+ release:
14
+ runs-on: ubuntu-22.04
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: ./.github/actions/setup
18
+ - uses: docker/login-action@v3
19
+ with:
20
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
21
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
22
+ - run: bun publish:web:docker
23
+ working-directory: web
24
+ - run: curl -X POST -i ${{ secrets.UPDATE_WEBSITE_WEBHOOK }}
0 commit comments