Skip to content
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.

Commit

Permalink
fix: do not persist creds in build checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
Addon Factory template committed Jun 4, 2021
1 parent 50d5698 commit e5174be
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- "main"
- "develop"
tags:
- "v*"
branches:
- "main"
- "develop"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
pull_request:
branches: [main, develop]

Expand Down Expand Up @@ -119,6 +119,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
#Very Important semantic-release won't trigger a tagged
#build if this is not set false
persist-credentials: false

- name: Setup python
uses: actions/setup-python@v2
with:
Expand Down

0 comments on commit e5174be

Please sign in to comment.