Skip to content

Use ssh via vpn from metal-lib #265

Use ssh via vpn from metal-lib

Use ssh via vpn from metal-lib #265

Workflow file for this run

---
name: Docker Build Action
on:
pull_request:
branches:
- master
release:
types:
- published
push:
branches:
- master
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
GCS_BUCKET: images.metal-pod.io
jobs:
build:
name: Docker Build
runs-on: ubuntu-latest
steps:
- name: Log in to the container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
- name: Checkout
uses: actions/checkout@v3
- uses: google-github-actions/auth@v1
with:
credentials_json: '${{ secrets.GCP_SA_KEY }}'
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
- name: Ensure Go Version
uses: actions/setup-go@v3
with:
go-version: '1.20'
# go-version-file: 'go.mod'
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
args: --build-tags integration -p bugs -p unused --timeout=3m
- name: Lint Structs
uses: golangci/golangci-lint-action@v3
with:
args: --enable exhaustruct ./cmd --tests=false --timeout=3m
- name: Make tag
run: |
[ "${GITHUB_EVENT_NAME}" == 'pull_request' ] && echo "TAG_NAME=$(echo $GITHUB_REF | awk -F / '{print $3}')-${GITHUB_HEAD_REF##*/}" >> $GITHUB_ENV || true
[ "${GITHUB_EVENT_NAME}" == 'release' ] && echo "TAG_NAME=${GITHUB_REF##*/}" >> $GITHUB_ENV || true
[ "${GITHUB_EVENT_NAME}" == 'push' ] && echo "TAG_NAME=latest" >> $GITHUB_ENV || true
[ "${GITHUB_EVENT_NAME}" == 'pull_request' ] && echo "TARGET_BINARY_LOCATION=pull-requests/$(echo $GITHUB_REF | awk -F / '{print $3}')-${GITHUB_HEAD_REF##*/}" >> $GITHUB_ENV || true
[ "${GITHUB_EVENT_NAME}" == 'release' ] && echo "TARGET_BINARY_LOCATION=${GITHUB_REF##*/}" >> $GITHUB_ENV || true
[ "${GITHUB_EVENT_NAME}" == 'push' ] && echo "TARGET_BINARY_LOCATION=latest" >> $GITHUB_ENV || true
- name: Build
uses: fi-ts/action-docker-make@master
with:
username: ${{ secrets.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
args: >
--no-cache
--build-only metalctl
-x rule2,rule3
--summary
- name: Prepare upload
run: |
mkdir -p metalctl/${TARGET_BINARY_LOCATION}
sudo chown -R $(id -u):$(id -g) result
cp result/* metalctl/${TARGET_BINARY_LOCATION}/
- name: Upload image tarballs to GCS
run: gsutil -m cp -r -p metalctl gs://$GCS_BUCKET
- name: Upload Release Asset
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: |
result/metalctl-*
if: ${{ github.event_name == 'release' }}