fix(cicd): Fixed bad syntax on github actions flows (attempt #2)

This commit is contained in:
ItsIgnacioPortal 2026-04-13 22:43:43 -03:00
parent 3efa650de1
commit aca5c00504
No known key found for this signature in database
GPG key ID: 8A401781634614F8
4 changed files with 4 additions and 4 deletions

View file

@ -9,7 +9,7 @@ on:
jobs:
update-readme:
if: ${{ vars.RUN_UPDATERS }} == '1'
if: vars.RUN_UPDATERS == 1
runs-on: ubuntu-latest
permissions:
contents: write

View file

@ -8,7 +8,7 @@ on:
jobs:
update-files:
if: ${{ vars.RUN_UPDATERS }} == '1'
if: vars.RUN_UPDATERS == 1
permissions:
contents: write
runs-on: ubuntu-latest

View file

@ -6,7 +6,7 @@ on:
jobs:
update_awesome-environment-variable-names:
if: ${{ vars.RUN_UPDATERS }} == '1'
if: vars.RUN_UPDATERS == 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

View file

@ -10,7 +10,7 @@ on:
jobs:
updatejob:
if: ${{ vars.RUN_UPDATERS }} == '1'
if: vars.RUN_UPDATERS == 1
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job