Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Add Docker Compose files as assets to a release #179

Merged
merged 1 commit into from
Dec 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/build-containers.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: Build and push containers
on:
push:
tags:
Expand Down Expand Up @@ -61,3 +62,20 @@ jobs:
git checkout maintenance
git reset --hard origin/main
git push --force origin maintenance

release-compose-files:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: 'flowforge/docker-compose'

- name: Add assets to the release
uses: softprops/action-gh-release@v2
with:
files: |
docker-compose.yml
docker-compose-quick-start.yml
Loading