46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
name: Release
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
types: [closed]
|
|
|
|
jobs:
|
|
release:
|
|
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'v')
|
|
runs-on: build-htz-01
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Extract Version
|
|
id: get_version
|
|
run: echo "VERSION=${{ github.head_ref }}" >> $GITHUB_OUTPUT
|
|
|
|
# - name: Generate Changelog
|
|
# id: changelog
|
|
# uses: https://github.com/metcalfc/changelog-generator@v4.6.2
|
|
# with:
|
|
# myToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and push Docker image
|
|
run: |
|
|
VERSION=${{ steps.get_version.outputs.VERSION }}
|
|
docker build -t cr.jdbnet.co.uk/public/ssh:$VERSION \
|
|
-t cr.jdbnet.co.uk/public/ssh:latest \
|
|
--build-arg VERSION=$VERSION \
|
|
.
|
|
docker push cr.jdbnet.co.uk/public/ssh:$VERSION
|
|
docker push cr.jdbnet.co.uk/public/ssh:latest
|
|
|
|
- name: Create Gitea Release
|
|
uses: https://gitea.com/actions/gitea-release-action@v1
|
|
with:
|
|
tag_name: ${{ steps.get_version.outputs.VERSION }}
|
|
name: ${{ steps.get_version.outputs.VERSION }}
|
|
body: ${{ steps.changelog.outputs.changelog }}
|
|
draft: false
|
|
prerelease: false |