FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

test deploy github workflow by justonedev1 · Pull Request #848 · AliceO2Group/Control · GitHub

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .yml  (1) All 1 file type selected
Only manifest files
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
59 changes: 59 additions & 0 deletions .github/workflows/control-operator-release.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: AliECS Control Operator Release

on:
push:
tags:
- 'control-operator-v*'

permissions:
contents: read
packages: write

defaults:
run:
working-directory: control-operator

jobs:
release:
name: Test, Build & Publish Images
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7

- uses: actions/setup-go@v7
with:
go-version: '1.25.0'

- uses: arduino/setup-protoc@v3
with:
version: '35.1'
repo-token: ${{ secrets.GITHUB_TOKEN }}
Comment thread
knopers8 marked this conversation as resolved.

- name: Derive version from tag
id: version
run: |
echo "version=${GITHUB_REF_NAME#control-operator-v}" >> "$GITHUB_OUTPUT"

- name: Verify tag matches Makefile VERSION
run: |
MAKEFILE_VERSION=$(sed -n 's/^VERSION ?= //p' Makefile)
if [ "$MAKEFILE_VERSION" != "${{ steps.version.outputs.version }}" ]; then
echo "Tag version (${{ steps.version.outputs.version }}) does not match Makefile VERSION ($MAKEFILE_VERSION)" >&2
exit 1
fi

- name: Run tests
run: make test

- name: Log in to GHCR
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build & push images
run: |
make docker-build docker-push \
TASK_IMG=ghcr.io/aliceo2group/control-operator/task-manager:v${{ steps.version.outputs.version }} \
ENVIRONMENT_IMG=ghcr.io/aliceo2group/control-operator/environment-manager:v${{ steps.version.outputs.version }}
Loading

Back | FazBrowse Home | New Git URL