Skip to content

Commit

Permalink
chore(ci): fix sk passing
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Oct 24, 2024
1 parent cce0460 commit 1b2f99d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
clean: false
- uses: actions/cache@v3
- uses: actions/cache@v4
id: cache
with:
path: |
Expand All @@ -23,7 +23,7 @@ jobs:
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build and bump
run: cd ua_generator && BUILD_ENABLED=1 APILAYER_KEY=${{ secrets.APILAYER_KEY }} cargo build
run: cd ua_generator && BUILD_ENABLED=1 APILAYER_KEY="${{ secrets.APILAYER_KEY }}" cargo build
- uses: EndBug/add-and-commit@v9
with:
message: "chore(agents): update agent list to latest"
Expand Down

0 comments on commit 1b2f99d

Please sign in to comment.