Skip to content

Commit

Permalink
adds missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
joergi committed Sep 29, 2024
1 parent f8d2bd0 commit 63b578b
Showing 1 changed file with 1 addition and 45 deletions.
46 changes: 1 addition & 45 deletions .github/workflows/testing-regular-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,50 +13,6 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# regular-powershell:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
# - uses: pCYSl5EDgo/cat@master
# id: read_recent
# with:
# path: sources-for-download/regular-issues.txt
# - run: |
# echo "ISSUE_NUMBER=${{ steps.read_recent.outputs.text }}" >> $GITHUB_ENV
# echo "ISSUE_MINUS_ONE=$((${{ steps.read_recent.outputs.text }}-1))" >> $GITHUB_ENV
# echo "ISSUE_MINUS_FIVE=$((${{ steps.read_recent.outputs.text }}-5))" >> $GITHUB_ENV
# echo "ISSUE_MINUS_SIX=$((${{ steps.read_recent.outputs.text }}-6))" >> $GITHUB_ENV
# shell: bash
#
# - name: print out vars
# id: printOutVars
# shell: pwsh
# run: env
#
# - name: Download Issues With end limit
# id: normalIssuesWithEndLimit
# shell: pwsh
# run: ./windows/magpi-issue-downloader.ps1 -l 2
# - name: Download Issues with start and end limit
# id: normalIssuesWithRange
# shell: pwsh
# run: ./windows/magpi-issue-downloader.ps1 -f ${{ env.ISSUE_MINUS_SIX }} -l ${{ env.ISSUE_MINUS_FIVE }}
# - name: Download Issues with start limit
# id: normalIssuesWithStartingLimit
# shell: pwsh
# run: ./windows/magpi-issue-downloader.ps1 -f $((${{ env.ISSUE_NUMBER }}-1))
# - name: "Check file existence Windows"
# id: check_files
# uses: andstor/file-existence-action@v3.0.0
# with:
# files: "issues/MagPi_1.pdf, issues/MagPi_2.pdf, issues/MagPi_${{ env.ISSUE_MINUS_SIX }}.pdf, issues/MagPi_${{ env.ISSUE_MINUS_FIVE }}.pdf, issues/MagPi_${{ env.ISSUE_MINUS_ONE }}.pdf, issues/MagPi_${{ env.ISSUE_NUMBER }}.pdf"
# fail: true
# - name: lslah issues
# run: Get-ChildItem -path D:\a\MagPiDownloader\MagPiDownloader\issues
# - name: File exists
# if: steps.check_files.outputs.files_exists == 'false'
# run: exit 1

regular:
strategy:
matrix:
Expand All @@ -80,7 +36,7 @@ jobs:
run: |-
echo "in windows if"
echo "OS_PATH=windows" >> $GITHUB_ENV
echo "OS_FILE_EXTENTION=sh" >> $GITHUB_ENV
echo "OS_FILE_EXTENTION=ps" >> $GITHUB_ENV
echo "OS_SHELL=pwsh" >> $GITHUB_ENV
shell: bash
- name: some NON Windows specifc variables
Expand Down

0 comments on commit 63b578b

Please sign in to comment.