Skip to content

Update VERSION

Update VERSION #123

name: Create tagged release
on:
push:
paths:
- 'VERSION'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Set env
run: |
echo "SHORT_SHA=${GITHUB_SHA:0:6}" >> $GITHUB_ENV
echo "RELEASE_VERSION=$(<VERSION)" >> $GITHUB_ENV
- name: Set release name
run: echo "RELAESE_NAME=Release ${{ env.RELEASE_VERSION }}+${{ env.SHORT_SHA }}" >> $GITHUB_ENV
- name: Push a new tag
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git tag "${{ env.RELEASE_VERSION }}"
git push origin --tags
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
tag_name: ${{ env.RELEASE_VERSION }}
release_name: ${{ env.RELEASE_NAME }}
draft: false
prerelease: false
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set env
run: echo "RELEASE_VERSION=$(<VERSION)" >> $GITHUB_ENV
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{secrets.HUB_USERNAME}}
password: ${{secrets.HUB_PASSWORD}}
- name: Login to Alibaba Cloud Container Registry (ACR)
uses: docker/login-action@v3
with:
username: ${{secrets.CLOUD_USERNAME}}
password: ${{secrets.CLOUD_PASSWORD}}
registry: registry.cn-hangzhou.aliyuncs.com
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
silianz/python-openbmclapi:latest
silianz/python-openbmclapi:${{env.RELEASE_VERSION}}
registry.cn-hangzhou.aliyuncs.com/silianz/python-openbmclapi:latest
registry.cn-hangzhou.aliyuncs.com/silianz/python-openbmclapi:${{env.RELEASE_VERSION}}
platforms: linux/amd64, linux/arm64