Skip to content

Commit

Permalink
Add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sylhare committed Aug 29, 2024
1 parent 7a91b15 commit 969ebcf
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 18 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build

on:
workflow_run:
workflows: ["Build with Docker"]
types:
- completed


jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Fail if previous workflow failed
run: exit 1
if: ${{ github.event.workflow_run.conclusion != 'success' }}

- uses: actions/checkout@v4
- name: Hello world
run: echo "Build passed! 🎉"
18 changes: 0 additions & 18 deletions .github/workflows/workflow-test.yml

This file was deleted.

0 comments on commit 969ebcf

Please sign in to comment.