Skip to content

Commit

Permalink
tagger and build-container
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Hildebrandt <[email protected]>
  • Loading branch information
paulphys committed Jun 26, 2024
1 parent b40c0f9 commit 9013eb8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# create tag
# build container
# create github release
# push it to registry.scs.community

name: release-builder
on:
push:
branches:
- build-pipeline
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
build-container:
runs-on: ubuntu-latest
container: docker
steps:
- uses: actions/checkout@v4
- run: docker build -t cluster-gen .

0 comments on commit 9013eb8

Please sign in to comment.