Skip to content

Commit

Permalink
ci: Add release GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dlipovetsky committed Sep 25, 2024
1 parent f238de8 commit f7db8c7
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Release
on:
workflow_dispatch:
inputs:
tag:
description: 'The tag to release.'
type: string
required: true

env:
GITHUB_TOKEN: "${{ secrets.MESOSPHERECI_USER_TOKEN }}"
IMAGE: "ghcr.io/mesosphere/cloud-provider-vsphere"

jobs:
build_and_push:
runs-on:
- self-hosted
- small
steps:
- name: Checks out the repository at the release tag
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ inputs.tag }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image
run: |
make docker-image IMAGE="$IMAGE" BRANCH_NAME="${{ inputs.tag }}"
- name: Push image
run: |
docker push "$IMAGE:${{ inputs.tag }}"

0 comments on commit f7db8c7

Please sign in to comment.