Compare commits
11 Commits
0b16008aa7
...
2cd830db7c
Author | SHA1 | Date |
---|---|---|
Sebastian Weigand | 2cd830db7c | |
🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) | 93e87954aa | |
Brendon Smith | f81cd95ad9 | |
s-weigand | aabe83c06d | |
s-weigand | bf26813dfe | |
s-weigand | 1ef704e0ad | |
Sebastian Weigand | 5fbbe92f7f | |
Sebastian Weigand | 54e3ca66c3 | |
s-weigand | 5baaafca44 | |
s-weigand | b78d2e95c3 | |
s-weigand | e34653ec97 |
|
@ -32,15 +32,18 @@ jobs:
|
||||||
IMAGE="ghcr.io/$GITHUB_REPOSITORY:${DOCKER_TAG}"
|
IMAGE="ghcr.io/$GITHUB_REPOSITORY:${DOCKER_TAG}"
|
||||||
IMAGE_MAJOR="ghcr.io/$GITHUB_REPOSITORY:${DOCKER_TAG_MAJOR}"
|
IMAGE_MAJOR="ghcr.io/$GITHUB_REPOSITORY:${DOCKER_TAG_MAJOR}"
|
||||||
IMAGE_MAJOR_MINOR="ghcr.io/$GITHUB_REPOSITORY:${DOCKER_TAG_MAJOR_MINOR}"
|
IMAGE_MAJOR_MINOR="ghcr.io/$GITHUB_REPOSITORY:${DOCKER_TAG_MAJOR_MINOR}"
|
||||||
|
IMAGE_SHA="ghcr.io/$GITHUB_REPOSITORY:${GITHUB_SHA}"
|
||||||
echo "IMAGE=$IMAGE" >>"$GITHUB_ENV"
|
echo "IMAGE=$IMAGE" >>"$GITHUB_ENV"
|
||||||
echo "IMAGE_MAJOR=$IMAGE_MAJOR" >>"$GITHUB_ENV"
|
echo "IMAGE_MAJOR=$IMAGE_MAJOR" >>"$GITHUB_ENV"
|
||||||
echo "IMAGE_MAJOR_MINOR=$IMAGE_MAJOR_MINOR" >>"$GITHUB_ENV"
|
echo "IMAGE_MAJOR_MINOR=$IMAGE_MAJOR_MINOR" >>"$GITHUB_ENV"
|
||||||
|
echo "IMAGE_SHA=$IMAGE_SHA" >>"$GITHUB_ENV"
|
||||||
docker build . \
|
docker build . \
|
||||||
--build-arg BUILDKIT_INLINE_CACHE=1 \
|
--build-arg BUILDKIT_INLINE_CACHE=1 \
|
||||||
--cache-from $IMAGE \
|
--cache-from $IMAGE \
|
||||||
--tag $IMAGE
|
--tag $IMAGE
|
||||||
docker tag $IMAGE $IMAGE_MAJOR
|
docker tag $IMAGE $IMAGE_MAJOR
|
||||||
docker tag $IMAGE $IMAGE_MAJOR_MINOR
|
docker tag $IMAGE $IMAGE_MAJOR_MINOR
|
||||||
|
docker tag $IMAGE $IMAGE_SHA
|
||||||
env:
|
env:
|
||||||
DOCKER_TAG: ${{ inputs.tag || github.ref_name }}
|
DOCKER_TAG: ${{ inputs.tag || github.ref_name }}
|
||||||
- name: Log in to GHCR
|
- name: Log in to GHCR
|
||||||
|
@ -52,3 +55,4 @@ jobs:
|
||||||
docker push $IMAGE
|
docker push $IMAGE
|
||||||
docker push $IMAGE_MAJOR
|
docker push $IMAGE_MAJOR
|
||||||
docker push $IMAGE_MAJOR_MINOR
|
docker push $IMAGE_MAJOR_MINOR
|
||||||
|
docker push $IMAGE_SHA
|
||||||
|
|
|
@ -0,0 +1,62 @@
|
||||||
|
name: "Publish Major-Minor-Tags"
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "v*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
push-tags:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Python 3.8
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: 3.8
|
||||||
|
- name: Install packaging
|
||||||
|
run: python -m pip install -U packaging --user
|
||||||
|
- name: Get versions
|
||||||
|
id: get_versions
|
||||||
|
shell: python
|
||||||
|
run: |
|
||||||
|
from packaging.version import parse
|
||||||
|
|
||||||
|
tag_ref = "${{ github.ref }}"
|
||||||
|
tag_name = tag_ref.split("/")[-1]
|
||||||
|
version = parse(tag_name)
|
||||||
|
print(f"tag_name: {tag_name}")
|
||||||
|
print(f"version: {version}")
|
||||||
|
if version.is_prerelease:
|
||||||
|
print("No tags created (dev or pre version)!")
|
||||||
|
exit(0)
|
||||||
|
|
||||||
|
print("Creating new major and minor tags!")
|
||||||
|
print(f"::set-output name=original_tag_name::{tag_name}")
|
||||||
|
print(f"::set-output name=major_version::v{version.major}")
|
||||||
|
print(f"::set-output name=minor_version::v{version.major}.{version.minor}")
|
||||||
|
- name: Setup git user as [bot]
|
||||||
|
run: |
|
||||||
|
git config user.email 'github-actions[bot]@users.noreply.github.com'
|
||||||
|
git config user.name 'github-actions[bot]'
|
||||||
|
- name: Create major + minor tags
|
||||||
|
if: steps.get_versions.outputs.original_tag_name != ''
|
||||||
|
env:
|
||||||
|
original_tag_name: ${{ steps.get_versions.outputs.original_tag_name }}
|
||||||
|
major_version: ${{ steps.get_versions.outputs.major_version }}
|
||||||
|
minor_version: ${{ steps.get_versions.outputs.minor_version }}
|
||||||
|
run: |
|
||||||
|
git tag --annotate '${{ env.major_version }}' \
|
||||||
|
--message='Major version tag of: ${{ env.original_tag_name }}' \
|
||||||
|
--message="Original tag SHA1: $(git rev-parse ${{ env.original_tag_name }})"
|
||||||
|
git tag --annotate '${{ env.minor_version }}' \
|
||||||
|
--message='Minor version tag of: ${{ env.original_tag_name }}' \
|
||||||
|
--message="Original tag SHA1: $(git rev-parse ${{ env.original_tag_name }})"
|
||||||
|
- name: Push major + minor tags
|
||||||
|
if: steps.get_versions.outputs.original_tag_name != ''
|
||||||
|
env:
|
||||||
|
major_version: ${{ steps.get_versions.outputs.major_version }}
|
||||||
|
minor_version: ${{ steps.get_versions.outputs.minor_version }}
|
||||||
|
run: |
|
||||||
|
git push --force --atomic origin \
|
||||||
|
'${{ env.major_version }}' \
|
||||||
|
'${{ env.minor_version }}'
|
Loading…
Reference in New Issue