forked from k8snetworkplumbingwg/ptp-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 915 Bytes
/
build-operator-image.yaml
File metadata and controls
37 lines (34 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Deploy Operator Images to GHCR
env:
DOTNET_VERSION: '6.0.x'
on:
push:
branches:
- main
workflow_dispatch:
jobs:
push-operator-image:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
defaults:
run:
working-directory: '.'
env:
CONTAINER_TOOL: docker
IMG : ghcr.io/${{ github.repository }}
VERSION: latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build Operator Image'
run: |
make docker-build
make docker-push