Skip to content
This repository was archived by the owner on Feb 11, 2025. It is now read-only.

Commit 65d0176

Browse files
authored
Merge pull request #3 from fullstack-devops/bugfix/fix-create-release
fix create release
2 parents 4d73e26 + 928c80b commit 65d0176

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/create-release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,18 @@ jobs:
4242
tags: |
4343
ghcr.io/${{ github.repository_owner }}/github-runner-base:latest
4444
ghcr.io/${{ github.repository_owner }}/github-runner-base:${{needs.create_release.outputs.version}}
45+
46+
publish_release:
47+
runs-on: ubuntu-latest
48+
needs: [create_release, build]
49+
steps:
50+
- name: Checkout code
51+
uses: actions/checkout@v2
52+
- name: Setup awesome-ci
53+
uses: fullstack-devops/awesome-ci-action@main
54+
55+
- name: Publish Release
56+
run: awesome-ci release publish -releaseid "$ACI_RELEASE_ID"
57+
env:
58+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59+
ACI_RELEASE_ID: ${{ needs.create_release.outputs.releaseid }}

0 commit comments

Comments
 (0)