Skip to content

feat: include the application operation field in the ManifestWork pay… #24

feat: include the application operation field in the ManifestWork pay…

feat: include the application operation field in the ManifestWork pay… #24

Workflow file for this run

name: GoPostSubmit
on:
push:
branches:
- main
workflow_dispatch: {}
env:
# Common versions
GO_VERSION: '1.22'
GO_REQUIRED_MIN_VERSION: ''
GOPATH: '/home/runner/work/argocd-pull-integration/argocd-pull-integration/go'
defaults:
run:
working-directory: go/src/open-cluster-management.io/argocd-pull-integration
jobs:
images:
name: images
runs-on: ubuntu-latest
strategy:
matrix:
arch: [ amd64 ]
steps:
- name: checkout code
uses: actions/checkout@v3
with:
fetch-depth: 1
path: go/src/open-cluster-management.io/argocd-pull-integration
- name: install Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: install imagebuilder
run: go install github.com/openshift/imagebuilder/cmd/[email protected]
- name: pull base image
run: docker pull registry.access.redhat.com/ubi8/ubi-minimal:latest --platform=linux/${{ matrix.arch }}
- name: images
run: make docker-build
- name: push
run: |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login quay.io --username ${{ secrets.DOCKER_USER }} --password-stdin
docker push quay.io/open-cluster-management/argocd-pull-integration:latest