Skip to content

Commit

Permalink
ci: Add release web workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed May 7, 2024
1 parent 5ba0b94 commit 3951a05
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release-web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Validate
on:
workflow_dispatch:
push:
branches:
- main

jobs:
validate:
uses: './.github/workflows/validate.yml'
secrets: inherit

release:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- run: bun publish:web:docker
working-directory: web
- run: curl -X POST -i ${{ secrets.UPDATE_WEBSITE_WEBHOOK }}

0 comments on commit 3951a05

Please sign in to comment.