mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-10 11:30:59 +00:00
* Changed Dockerfile to get the Enviroment variable from the github actions workflow and pass it to the main.go file Added a function in main.go to fetch the enviroment varible and to have a fallback if the env variable isnt there Added a test for the version to use for this branch only * Update test-version.yaml * Update test-version.yaml * Removed the test because its not needed when we push upstream * Moved the version print in main.go to the Log codeblock as requested by toast-gear Added version as issue#1161 requests. Decided to use a docker tag structure for the userAgent string, with : being a seperator of the name and version * Used ldflags instead like mumoshu recommended Changed Dockerfile to use $VERSION from the workflow Added version.go and the build package Removed the getVersion function as we can just get the value directly * Used ldflags instead like mumoshu recommended Changed Dockerfile to use $VERSION from the workflow Added version.go and the build package Removed the getVersion function as we can just get the value directly * * Removed the default from the go code (set it as N/A) * Changed version from latest to dev inside makefile * Added buildarg for version to the dockerfile in the makerfile * Added VERSION with default dev value as arg inside dockerfile * Cleaned up inside dockerfile * Fix failing test * Fix possible missing VERSION in the ARC UA suffix due to missing build arg in docker-build-push step Co-authored-by: S8338C <viktor.lindgren@seb.se> Co-authored-by: Yusuke Kuoka <ykuoka@gmail.com>
72 lines
2.6 KiB
YAML
72 lines
2.6 KiB
YAML
name: Publish ARC
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
# https://docs.github.com/en/rest/overview/permissions-required-for-github-apps
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
jobs:
|
|
release-controller:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USER }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.18.2'
|
|
|
|
- name: Install tools
|
|
run: |
|
|
curl -L -O https://github.com/kubernetes-sigs/kubebuilder/releases/download/v2.2.0/kubebuilder_2.2.0_linux_amd64.tar.gz
|
|
tar zxvf kubebuilder_2.2.0_linux_amd64.tar.gz
|
|
sudo mv kubebuilder_2.2.0_linux_amd64 /usr/local/kubebuilder
|
|
curl -s https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh | bash
|
|
sudo mv kustomize /usr/local/bin
|
|
curl -L -O https://github.com/tcnksm/ghr/releases/download/v0.13.0/ghr_v0.13.0_linux_amd64.tar.gz
|
|
tar zxvf ghr_v0.13.0_linux_amd64.tar.gz
|
|
sudo mv ghr_v0.13.0_linux_amd64/ghr /usr/local/bin
|
|
|
|
- name: Set version
|
|
run: echo "VERSION=$(cat ${GITHUB_EVENT_PATH} | jq -r '.release.tag_name')" >> $GITHUB_ENV
|
|
|
|
- name: Upload artifacts
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
make github-release
|
|
|
|
- name: Setup Docker Environment
|
|
id: vars
|
|
uses: ./.github/actions/setup-docker-environment
|
|
with:
|
|
username: ${{ env.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
|
|
ghcr_username: ${{ github.actor }}
|
|
ghcr_password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and Push
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
file: Dockerfile
|
|
platforms: linux/amd64,linux/arm64
|
|
build-args: VERSION=${{ env.VERSION }}
|
|
push: true
|
|
tags: |
|
|
${{ env.DOCKERHUB_USERNAME }}/actions-runner-controller:latest
|
|
${{ env.DOCKERHUB_USERNAME }}/actions-runner-controller:${{ env.VERSION }}
|
|
${{ env.DOCKERHUB_USERNAME }}/actions-runner-controller:${{ env.VERSION }}-${{ steps.vars.outputs.sha_short }}
|
|
ghcr.io/actions-runner-controller/actions-runner-controller:latest
|
|
ghcr.io/actions-runner-controller/actions-runner-controller:${{ env.VERSION }}
|
|
ghcr.io/actions-runner-controller/actions-runner-controller:${{ env.VERSION }}-${{ steps.vars.outputs.sha_short }}
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|