Skip to content

Commit

Permalink
Merge pull request #56 from NearNodeFlash/release-v0.0.10
Browse files Browse the repository at this point in the history
Release v0.0.10
  • Loading branch information
roehrich-hpe authored Feb 21, 2024
2 parents 1b97120 + 8a423c5 commit 3a05a12
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 27 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/handle_release_tag.yaml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,23 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}

create_release:
needs: build
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0
- name: Repair tag
run: git fetch -f origin ${{ github.ref }}:${{ github.ref }}
- name: Verify that the tag is annotated
run: if test x$(git for-each-ref ${{ github.ref }} | awk '{print $2}') = xtag; then /bin/true; else echo "\"${{ github.ref }}\" does not look like an annotated tag!"; /bin/false; fi
- name: Release
uses: softprops/action-gh-release@v1
with:
#prerelease: true
generate_release_notes: true

2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ kind: Kustomization
images:
- name: controller
newName: ghcr.io/nearnodeflash/lustre-fs-operator
newTag: 0.0.9
newTag: 0.0.10

0 comments on commit 3a05a12

Please sign in to comment.