Fix apple_auth_key definition in common-secret (#470) #143
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Release" | |
on: | |
push: | |
branches: | |
- master | |
concurrency: release | |
jobs: | |
release-charts: | |
name: Release Charts | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout everything since ct uses git diff to determine charts | |
- name: Checkout | |
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b #v3.0.2 | |
with: | |
fetch-depth: 0 | |
- name: Release Charts | |
run: make release | |
env: | |
CR_TOKEN: ${{ github.token }} |