runtime/.github/workflows/release.yml
Adam Štrauch 6c7c6f80fb
Some checks failed
Test build / build (push) Failing after 24m43s
Test fix, parallel procesing of Node.js builds
2025-01-19 16:00:07 +01:00

33 lines
1 KiB
YAML

name: Release into production
on:
release:
types: [published]
workflow_dispatch:
inputs:
version:
description: 'Version to release'
required: true
default: 'latest'
jobs:
build:
runs-on: [dev, amd64]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Get git tag
id: get_tag
if: github.event_name == 'release'
run: echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Set version from input
if: github.event_name == 'workflow_dispatch'
run: echo "TAG_NAME=${{ github.event.inputs.version }}" >> $GITHUB_ENV
- name: Final build
run: |
docker login gitea.ceperka.net -u "${{ secrets.HARBOR_REPO_USERNAME }}" -p "${{ secrets.HARBOR_REPO_PASSWORD }}"
task squashed REPO=harbor.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }}
task push REPO=harbor.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }}