Skip to content

Commit

Permalink
test(bosh-release-creation): create dev release on each commit
Browse files Browse the repository at this point in the history
  • Loading branch information
o-orand committed Jan 15, 2024
1 parent d7f910c commit 9941cf3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/on-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: on-commit

on:
workflow_dispatch:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
id: checkout_test_repo
uses: actions/checkout@v4
with:
repository: 'create-bosh-release-action-test-boshrelease'
fetch-depth: 0

- name: Test dev release
id: test_dev_release
uses: orange-cloudfoundry/create-bosh-release-action@${{github.sha}}
with:
target_branch: main

0 comments on commit 9941cf3

Please sign in to comment.