-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #325 from crossroads/master
[Release] Goodcity v0.17.8
- Loading branch information
Showing
12 changed files
with
179 additions
and
87 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -200,7 +200,7 @@ jobs: | |
|
||
ios_build_and_deploy: | ||
macos: | ||
xcode: "10.1.0" | ||
xcode: "11.0.0" | ||
working_directory: ~/code | ||
shell: /bin/bash --login -eo pipefail | ||
environment: | ||
|
@@ -209,6 +209,19 @@ jobs: | |
|
||
steps: | ||
- checkout | ||
- run: | ||
name: install [email protected] | ||
command: | | ||
set +e | ||
touch $BASH_ENV | ||
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash | ||
echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV | ||
echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV | ||
echo nvm install 6.16.0 >> $BASH_ENV | ||
echo nvm alias default 6.16.0 >> $BASH_ENV | ||
- run: | ||
name: verify node version | ||
command: node --version | ||
- restore-cache: *restore-ios-yarn-cache | ||
- run: *yarn | ||
- save-cache: *save-ios-yarn-cache | ||
|
@@ -301,7 +314,7 @@ jobs: | |
www_deploy: | ||
<<: *defaults | ||
docker: | ||
- image: circleci/ruby:2.5.1-node | ||
- image: circleci/ruby:2.5.5 | ||
steps: | ||
- restore-cache: *restore-repo-cache | ||
- restore-cache: *restore-bundler-cache | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: Forward release notes | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
branches: | ||
- live | ||
|
||
jobs: | ||
release-notes: | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.merged == true | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js 12.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12.x | ||
- name: Generate and email notes | ||
run: npx @goodcity/release-notes --email-to "[email protected],[email protected],[email protected]" --head ${{github.event.pull_request.head.sha}} --base ${{github.event.pull_request.base.sha}} --email-subject "🚀 Donor App Release 🚀" | ||
env: | ||
JIRA_USERNAME: ${{secrets.jira_username}} | ||
JIRA_PASSWORD: ${{secrets.jira_password}} | ||
SENDGRID_API_KEY: ${{secrets.sendgrid_api_key}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ruby-2.5.3 | ||
ruby-2.5.5 |
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
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
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
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
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
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
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
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
Oops, something went wrong.