Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Fix issue #32: Fix nightly image checks
Browse files Browse the repository at this point in the history
Signed-off-by: Timo Reichl <thetredev@gmail.com>
  • Loading branch information
thetredev committed Sep 28, 2023
1 parent 0d5df7f commit 4949098
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/base-csgo-image-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4

- name: Compare base-csgo image platform and tag
id: compare-base-csgo
id: compare_csgo
run: |
# Get base-csgo SteamRT platform variant
export STEAMRT_PLATFORM_VARIANT=$(docker compose config base-csgo | grep 'STEAMRT_PLATFORM_VARIANT' | cut -d ':' -f 2 | xargs)
Expand All @@ -37,7 +37,7 @@ jobs:
fi
- name: Check if pull request exists for newer base-csgo image
if: ${{ steps.compare.outputs.createpr_csgo == 1 }}
if: ${{ steps.compare_csgo.outputs.createpr_csgo == 1 }}
id: checkpr_csgo
uses: actions/github-script@v6
with:
Expand All @@ -63,8 +63,8 @@ jobs:
if: ${{ steps.checkpr_csgo.outputs.result == 'continue' }}
run: |
# Install yq
apt-get update
apt-get install -y --no-install-recommends yq
sudo apt-get update
sudo apt-get install -y --no-install-recommends yq
# Prepare git user
git config user.name github-actions
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/base-legacy-image-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4

- name: Compare base-legacy image platform and tag
id: compare-base-legacy
id: compare_legacy
run: |
# Get base-legacy SteamRT platform variant
export STEAMRT_PLATFORM_VARIANT=$(docker compose config base-legacy | grep 'STEAMRT_PLATFORM_VARIANT' | cut -d ':' -f 2 | xargs)
Expand All @@ -37,7 +37,7 @@ jobs:
fi
- name: Check if pull request exists for newer base-legacy image
if: ${{ steps.compare.outputs.createpr_legacy == 1 }}
if: ${{ steps.compare_legacy.outputs.createpr_legacy == 1 }}
id: checkpr_legacy
uses: actions/github-script@v6
with:
Expand All @@ -63,8 +63,8 @@ jobs:
if: ${{ steps.checkpr_legacy.outputs.result == 'continue' }}
run: |
# Install yq
apt-get update
apt-get install -y --no-install-recommends yq
sudo apt-get update
sudo apt-get install -y --no-install-recommends yq
# Prepare git user
git config user.name github-actions
Expand Down

0 comments on commit 4949098

Please sign in to comment.