Skip to content

Commit

Permalink
Fix missing redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhung committed Jul 8, 2024
1 parent f06bc58 commit 85f1ed4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ jobs:
mkdir -p ${{ runner.temp }}/artifactory/extra_conf
mkdir -p ${{ runner.temp }}/artifactory/var/etc
echo $ARTIFACTORY_LICENSE > ${{ runner.temp }}/artifactory/extra_conf/artifactory.lic
cat ${{ github.workspace }}/scripts/system.yaml | yq '.shared += {"security": {"joinKey": "${{ secrets.ARTIFACTORY_JOIN_KEY }}"}}' ${{ runner.temp }}/artifactory/var/etc/system.yaml
cat ${{ github.workspace }}/scripts/system.yaml | yq '.shared += {"security": {"joinKey": "${{ secrets.ARTIFACTORY_JOIN_KEY }}"}}' > ${{ runner.temp }}/artifactory/var/etc/system.yaml
sudo chown -R 1030:1030 ${{ runner.temp }}/artifactory/var
mkdir -p ${{ runner.temp }}/artifactory-2/extra_conf
mkdir -p ${{ runner.temp }}/artifactory-2/var/etc
echo $ARTIFACTORY_LICENSE > ${{ runner.temp }}/artifactory-2/extra_conf/artifactory.lic
cat ${{ github.workspace }}/scripts/system.yaml | yq '.shared += {"security": {"joinKey": "${{ secrets.ARTIFACTORY_JOIN_KEY }}"}}' ${{ runner.temp }}/artifactory-2/var/etc/system.yaml
cat ${{ github.workspace }}/scripts/system.yaml | yq '.shared += {"security": {"joinKey": "${{ secrets.ARTIFACTORY_JOIN_KEY }}"}}' > ${{ runner.temp }}/artifactory-2/var/etc/system.yaml
sudo chown -R 1030:1030 ${{ runner.temp }}/artifactory-2/var
- name: Run Artifactory container
id: run_artifactory_container
Expand Down

0 comments on commit 85f1ed4

Please sign in to comment.