A focused Docker Compose management web application.
0
fork

Configure Feed

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

chore: switch to corrent aruments

Brooke 8b0b310e 19c697d6

+20 -4
+20 -4
.github/workflows/release.yml
··· 8 8 build: 9 9 permissions: 10 10 packages: write 11 - contents: read 12 11 runs-on: ubuntu-latest 13 12 14 13 steps: 15 - - uses: actions/checkout@v6 16 - - uses: docker/build-push-action@v6 14 + - id: meta 15 + uses: docker/metadata-action@v6 17 16 with: 18 - image: luminary 17 + images: | 18 + ghcr.io/brooke-ec/luminary 19 + tags: | 20 + type=raw,value=latest,enable={{is_default_branch}} 21 + type=semver,pattern={{major}}.{{minor}} 22 + type=semver,pattern={{version}} 23 + type=semver,pattern={{major}} 24 + 25 + - uses: docker/login-action@v4 26 + with: 19 27 registry: ghcr.io 20 28 username: ${{ github.actor }} 21 29 password: ${{ secrets.GITHUB_TOKEN }} 30 + 31 + - uses: docker/setup-buildx-action@v4 32 + 33 + - uses: docker/build-push-action@v7 34 + with: 35 + push: true 36 + tags: ${{ steps.meta.outputs.tags }} 37 + labels: ${{ steps.meta.outputs.labels }}