Skip to content

Commit

Permalink
fix: uses correct id in argocd container
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman committed Oct 23, 2024
1 parent 908c04c commit 5243570
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,15 @@ jobs:
args: ${{ matrix.release.project }} ${{ matrix.release.name }}
local: ${{ inputs.local }}
verbosity: ${{ inputs.verbosity }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release Temp
uses: input-output-hk/catalyst-forge/actions/run@master
if: matrix.release.project == './tools/argocd'
with:
command: release
args: --force ${{ matrix.release.project }} ${{ matrix.release.name }}
local: ${{ inputs.local }}
verbosity: ${{ inputs.verbosity }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion tools/argocd/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ docker:
ARG TARGETARCH
ARG USERPLATFORM

RUN useradd -m argocd
RUN useradd -m -u 999 argocd

USER argocd
WORKDIR /home/argocd
Expand Down

0 comments on commit 5243570

Please sign in to comment.