Skip to content

Commit

Permalink
fix: release 8.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dabrad26 committed Nov 9, 2023
1 parent 80d0816 commit c7c49c9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,23 @@ jobs:
yarn install --cwd example --frozen-lockfile
yarn install --frozen-lockfile
- name: Initialize Git user
run: |
git config --global user.name "David Bradshaw"
git config --global user.email "[email protected]"
- name: Configure git
uses: oleksiyrudenko/[email protected]
with:
global: true
name: 'David Bradshaw'
email: '[email protected]'
actor: '[email protected]'
token: '${{ secrets.DCO_PERSONAL_ACCESS_TOKEN }}'

- name: Setup SSH
- name: Change git remote to use SSH
run: |
mkdir -p ~/.ssh
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan github.com >> ~/.ssh/known_hosts
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
git remote set-url origin [email protected]:carbon-design-system/carbon-react-native.git
- name: Attach SSH key
uses: webfactory/ssh-[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Deploy to Github & NPM 🚀
run: |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@carbon/react-native",
"version": "8.0.7",
"version": "8.0.8",
"description": "Carbon React Native Library",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit c7c49c9

Please sign in to comment.