forked from camenduru/flux.1-dev-lora-tost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: added prod workflow including semantic release
- Loading branch information
1 parent
2abf13f
commit 643328a
Showing
3 changed files
with
84 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- "main" | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest-l | ||
if: ${{ !contains(github.event.head_commit.message, 'chore(release)') }} | ||
permissions: | ||
contents: write # to be able to publish a GitHub release | ||
issues: write # to be able to comment on released issues | ||
pull-requests: write # to be able to comment on released pull requests | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Clear space to remove unused folders | ||
run: | | ||
rm -rf /usr/share/dotnet | ||
rm -rf /opt/ghc | ||
rm -rf "/usr/local/share/boost" | ||
rm -rf "$AGENT_TOOLSDIRECTORY" | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Update the ToC in the README.md | ||
run: npx markdown-toc README.md -i | ||
|
||
- name: Semantic release | ||
uses: codfish/semantic-release-action@v3 | ||
id: semanticrelease | ||
with: | ||
additional-packages: | | ||
['@semantic-release/git', '@semantic-release/changelog'] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN_SEMANTIC_RELEASE }} | ||
|
||
- name: Set environment variables | ||
if: steps.semanticrelease.outputs.new-release-published == 'true' | ||
run: | | ||
echo "DOCKERHUB_REPO=${{ secrets.DOCKERHUB_REPO }}" >> $GITHUB_ENV | ||
echo "DOCKERHUB_IMG=${{ secrets.DOCKERHUB_IMG }}" >> $GITHUB_ENV | ||
echo "HUGGINGFACE_ACCESS_TOKEN=${{ secrets.HUGGINGFACE_ACCESS_TOKEN }}" >> $GITHUB_ENV | ||
echo "RELEASE_VERSION=${{ steps.semanticrelease.outputs.release-version }}" >> $GITHUB_ENV | ||
- name: Build and push the images to Docker Hub | ||
if: steps.semanticrelease.outputs.new-release-published == 'true' | ||
uses: docker/bake-action@v2 | ||
with: | ||
push: true | ||
set: | | ||
*.args.DOCKERHUB_REPO=${{ env.DOCKERHUB_REPO }} | ||
*.args.DOCKERHUB_IMG=${{ env.DOCKERHUB_IMG }} | ||
*.args.RELEASE_VERSION=${{ env.RELEASE_VERSION }} | ||
*.args.HUGGINGFACE_ACCESS_TOKEN=${{ env.HUGGINGFACE_ACCESS_TOKEN }} | ||
- name: Update description on Docker Hub | ||
if: steps.semanticrelease.outputs.new-release-published == 'true' | ||
uses: peter-evans/dockerhub-description@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
repository: ${{ env.DOCKERHUB_REPO }}/${{ env.DOCKERHUB_IMG }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters