fix: Fixes release yml file.
This commit is contained in:
parent
a096424eb9
commit
0165d0b0b6
1 changed files with 7 additions and 5 deletions
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
|
@ -34,8 +34,9 @@ jobs:
|
||||||
- name: Make tag on Git
|
- name: Make tag on Git
|
||||||
uses: mathieudutour/github-tag-action@v6.2
|
uses: mathieudutour/github-tag-action@v6.2
|
||||||
with:
|
with:
|
||||||
github_token: '${{secrets.GITHUB_TOKEN}}'
|
github_token: ${{secrets.GITHUB_TOKEN}}
|
||||||
custom_tag: '${{ steps.get_version.outputs.version }}'
|
custom_tag: ${{ steps.get_version.outputs.version }}
|
||||||
|
tag_prefix: ''
|
||||||
|
|
||||||
- name: Make changelog
|
- name: Make changelog
|
||||||
uses: heinrichreimer/github-changelog-generator-action@v2.1.1
|
uses: heinrichreimer/github-changelog-generator-action@v2.1.1
|
||||||
|
@ -63,14 +64,15 @@ jobs:
|
||||||
LICENSE
|
LICENSE
|
||||||
docker-compose.yml
|
docker-compose.yml
|
||||||
repository: greysoh/nextnet
|
repository: greysoh/nextnet
|
||||||
token: '${{ secrets.GITHUB_TOKEN }}'
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
tag_name: ${{ steps.get_version.outputs.version }}
|
||||||
|
|
||||||
- name: Log in to GitHub container registry
|
- name: Log in to GitHub container registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: '${{github.actor}}'
|
username: ${{github.actor}}
|
||||||
password: '${{secrets.GITHUB_TOKEN}}'
|
password: ${{secrets.GITHUB_TOKEN}}
|
||||||
|
|
||||||
- name: Build all docker images
|
- name: Build all docker images
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue