Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Commit

Permalink
ci: enable auto versioning with sha
Browse files Browse the repository at this point in the history
semantic versioning is manually

**Usage**:

from the `main` branch

```shell
git tag git tag v1.0.0
```

```shell
 git push origin v1.0.0
```
  • Loading branch information
AliKdhim87 authored and Robbert committed Jul 27, 2023
1 parent 908b148 commit 0737a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ jobs:
images: |
ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value={{sha}},enable=${{ github.ref_type != 'tag' }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
Expand Down

0 comments on commit 0737a7b

Please sign in to comment.