Skip to content

Commit

Permalink
Fix telemetry key removal steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberboss committed Aug 17, 2024
1 parent 31669e1 commit 60c1e18
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ jobs:

- name: Delete Telemetry Key File
if: always()
run: rm ${{ env.TGS_TELEMETRY_KEY_FILE }}
run: rm -f ${{ env.TGS_TELEMETRY_KEY_FILE }}

linux-unit-tests:
name: Linux Tests
Expand Down Expand Up @@ -603,7 +603,7 @@ jobs:

- name: Delete Telemetry Key File
if: always()
run: rm ${{ env.TGS_TELEMETRY_KEY_FILE }}
run: rm -f ${{ env.TGS_TELEMETRY_KEY_FILE }}

- name: Cache BYOND .zips
uses: actions/cache@v4
Expand Down Expand Up @@ -692,7 +692,7 @@ jobs:
- name: Delete Telemetry Key File
shell: bash
if: always()
run: rm ${{ env.TGS_TELEMETRY_KEY_FILE }}
run: rm -f ${{ env.TGS_TELEMETRY_KEY_FILE }}

- name: Cache BYOND .zips
uses: actions/cache@v4
Expand Down Expand Up @@ -856,7 +856,7 @@ jobs:
- name: Delete Telemetry Key File
shell: bash
if: always()
run: rm ${{ env.TGS_TELEMETRY_KEY_FILE }}
run: rm -f ${{ env.TGS_TELEMETRY_KEY_FILE }}

- name: Cache BYOND .zips
uses: actions/cache@v4
Expand Down Expand Up @@ -1108,7 +1108,7 @@ jobs:

- name: Delete Telemetry Key File
if: always()
run: rm ${{ env.TGS_TELEMETRY_KEY_FILE }}
run: rm -f ${{ env.TGS_TELEMETRY_KEY_FILE }}

- name: Cache BYOND .zips
uses: actions/cache@v4
Expand Down Expand Up @@ -1606,7 +1606,7 @@ jobs:

- name: Delete Telemetry Key File
if: always()
run: rm ${{ env.TGS_TELEMETRY_KEY_FILE }}
run: rm -f ${{ env.TGS_TELEMETRY_KEY_FILE }}

- name: Test Install
run: |
Expand Down Expand Up @@ -1721,7 +1721,7 @@ jobs:
- name: Delete Telemetry Key File
shell: bash
if: always()
run: rm ${{ env.TGS_TELEMETRY_KEY_FILE }}
run: rm -f ${{ env.TGS_TELEMETRY_KEY_FILE }}

- name: Build Service
run: dotnet build -c Release src/Tgstation.Server.Host.Service/Tgstation.Server.Host.Service.csproj
Expand Down Expand Up @@ -2171,7 +2171,7 @@ jobs:
- name: Delete Telemetry Key File
shell: bash
if: always()
run: rm ${{ env.TGS_TELEMETRY_KEY_FILE }}
run: rm -f ${{ env.TGS_TELEMETRY_KEY_FILE }}

- name: Build Service
run: dotnet build -c Release src/Tgstation.Server.Host.Service/Tgstation.Server.Host.Service.csproj
Expand Down

0 comments on commit 60c1e18

Please sign in to comment.