Skip to content

Fix tests in util/string_test.go, util/env_test.go #1

Fix tests in util/string_test.go, util/env_test.go

Fix tests in util/string_test.go, util/env_test.go #1

Workflow file for this run

name: Publish latest operator build
on:
push:
branches:
- 'master'
jobs:
publish-latest-operator:
runs-on: ubuntu-latest
env:
REGISTRY_URL: quay.io
ORG: argoprojlabs
REPO: argocd-operator
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
<<<<<<< HEAD

Check failure on line 25 in .github/workflows/publish.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yaml

Invalid workflow file

You have an error in your yaml syntax on line 25
go-version: '1.21'
=======
go-version: '1.20'
>>>>>>> ae37d0a (retain old and new constants. .github folder changes, fix errors (#1133))
- name: Restore go build cache
uses: actions/cache@v1
with:
path: ~/.cache/go-build
key: ${{ runner.os }}-go-build-v1-${{ github.run_id }}
- name: Build operator and Tag Latest
run: make docker-build
env:
IMG: ${{ env.REGISTRY_URL }}/${{ env.ORG }}/${{ env.REPO }}:latest
- name: Login to Registry
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY_URL }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Push latest operator
run: make docker-push
env:
IMG: ${{ env.REGISTRY_URL }}/${{ env.ORG }}/${{ env.REPO }}:latest