Skip to content

Commit 29592e5

Browse files
authored
Undo the create_release job. (#154)
This job is not yet causing the `mike` tool to create a proper doc release. The "create release" button in the GUI causes the `mike` tool in .github/workflows/release.yaml to properly create a new doc release in its dropdown when viewed via https://nearnodeflash.github.io. Signed-off-by: Dean Roehrich <dean.roehrich@hpe.com>
1 parent cbf1aa0 commit 29592e5

1 file changed

Lines changed: 0 additions & 19 deletions

File tree

.github/workflows/publish-main.yaml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,3 @@ jobs:
3333
run: |
3434
mike deploy --push dev
3535
36-
create_release:
37-
needs: build
38-
if: startsWith(github.ref, 'refs/tags/v')
39-
runs-on: ubuntu-latest
40-
steps:
41-
- name: Checkout
42-
uses: actions/checkout@v4
43-
with:
44-
fetch-tags: true
45-
fetch-depth: 0
46-
- name: Repair tag
47-
run: git fetch -f origin ${{ github.ref }}:${{ github.ref }}
48-
- name: Verify that the tag is annotated
49-
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
50-
- name: Release
51-
uses: softprops/action-gh-release@v1
52-
with:
53-
#prerelease: true
54-
generate_release_notes: true

0 commit comments

Comments
 (0)