diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 60fef04..b826904 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,6 +34,11 @@ jobs: with: token: ${{ secrets.AUTOMATION_USER_TOKEN }} fetch-depth: 0 + - name: Set Secrets + uses: DevCycleHQ/aws-secrets-action@main + with: + secrets_map: '{"VSCODE_MARKETPLACE_TOKEN":"DEVCYCLE_GITHUB_vscode-extension_VSCODE_MARKETPLACE_TOKEN"}' + aws_account_id: '134377926370' - uses: DevCycleHQ/release-action/prepare-release@main id: prepare-release @@ -55,7 +60,7 @@ jobs: - name: Commit version change run: | - git config --global user.email "github-tracker-bot@taplytics.com" + git config --global user.email "foundation-admin@devcycle.com" git config --global user.name "DevCycle Automation" git add ./package.json ./CHANGELOG.md git commit -m "Release ${{ steps.prepare-release.outputs.next-release-tag }}" @@ -70,7 +75,7 @@ jobs: - name: Publish VSCode Extension run: | - yarn run publish -p ${{ secrets.VSCODE_MARKETPLACE_TOKEN }} + yarn run publish -p ${{ env.VSCODE_MARKETPLACE_TOKEN }} - name: Push version change run: |