Skip to content

Commit

Permalink
Fix missing env declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
zenangst committed Nov 7, 2023
1 parent 6fb6126 commit dcb6d8e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
echo -e "APP_SCHEME=Keyboard-Cowboy" >> .env
echo -e "APP_BUNDLE_IDENTIFIER=com.zenangst.Keyboard-Cowboy" >> .env
echo -e "TEAM_ID=XXXXXXXXXX" >> .env
echo -e "PACKAGE_DEVELOPMENT=false" >> .env
brew install tuist
tuist fetch
tuist generate -n
Expand Down
1 change: 1 addition & 0 deletions Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ let project = Project(
FileElement(stringLiteral: "ci_scripts"),
FileElement(stringLiteral: "Fixtures"),
FileElement(stringLiteral: "Project.swift"),
FileElement(stringLiteral: "README.md"),
FileElement(stringLiteral: "Tuist/Dependencies.swift"),
FileElement(stringLiteral: "appcast.xml"),
FileElement(stringLiteral: "gh-pages"),
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,12 @@ For more information about [tuist](https://tuist.io), refer to the projects READ
Create a new `.env` file in the root folder.
Add the following contents to the `.env`-file.

```
```fish
APP_NAME=Keyboard Cowboy
APP_SCHEME=Keyboard-Cowboy
APP_BUNDLE_IDENTIFIER=com.zenangst.Keyboard-Cowboy
TEAM_ID=XXXXXXXXXX
PACKAGE_DEVELOPMENT=false
```

#### Generating an Xcode project
Expand Down

0 comments on commit dcb6d8e

Please sign in to comment.