A focused Docker Compose management web application.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: add release workflow 🤞

These things never work first try 😭

Brooke 04b7f06d a6b8fd26

+20
+20
.github/workflows/release.yml
··· 1 + name: Build Image 2 + 3 + on: 4 + release: 5 + types: [created] 6 + 7 + jobs: 8 + build: 9 + permissions: 10 + packages: write 11 + runs-on: ubuntu-latest 12 + 13 + steps: 14 + - uses: actions/checkout@v6 15 + - uses: docker/build-push-action@v6 16 + with: 17 + image: luminary 18 + registry: ghcr.io 19 + username: ${{ github.actor }} 20 + password: ${{ secrets.GITHUB_TOKEN }}