Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONVERSATION_SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Submit Home Inventory app v1.0.6 to TestFlight with new features:
- **Team ID**: 2VXBQV4XC9
- **Version**: 1.0.6 (Build 7)
- **Developer**: griffinradcliffe@gmail.com
- **App-specific password**: lyto-qjbu-uffy-hsgb (stored in .env)
- **App-specific password**: <APP_SPECIFIC_PASSWORD> (stored in .env)

## Core Issue
**Swift Version Incompatibility**:
Expand Down
2 changes: 1 addition & 1 deletion TESTFLIGHT_SUBMISSION_STATUS.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ If you prefer manual upload:

## Credentials Available
✅ Apple ID: griffinradcliffe@gmail.com
✅ App-Specific Password: lyto-qjbu-uffy-hsgb
✅ App-Specific Password: <APP_SPECIFIC_PASSWORD>
✅ Team ID: 2VXBQV4XC9
✅ Bundle ID: com.homeinventory.app

Expand Down
2 changes: 1 addition & 1 deletion scripts/build_and_upload.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Set credentials
ENV['FASTLANE_USER'] = 'griffinradcliffe@gmail.com'
ENV['FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD'] = 'lyto-qjbu-uffy-hsgb'
ENV['FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD'] = '<APP_SPECIFIC_PASSWORD>'

puts "🚀 Building and Uploading to TestFlight"
puts "======================================"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_testflight.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
'-f', 'build/HomeInventoryModular.ipa',
'-t', 'ios',
'-u', 'griffinradcliffe@gmail.com',
'-p', ENV['FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD'] || 'lyto-qjbu-uffy-hsgb'
'-p', ENV['FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD'] || '<APP_SPECIFIC_PASSWORD>'
]

if system(*upload_cmd)
Expand Down
2 changes: 1 addition & 1 deletion scripts/deliver_ipa.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Configuration
IPA_PATH = File.expand_path('../build/HomeInventoryModular-1.0.6.ipa', __dir__)
USERNAME = 'griffinradcliffe@gmail.com'
APP_SPECIFIC_PASSWORD = 'lyto-qjbu-uffy-hsgb'
APP_SPECIFIC_PASSWORD = '<APP_SPECIFIC_PASSWORD>'

# Set environment
ENV['DELIVER_USER'] = USERNAME
Expand Down
2 changes: 1 addition & 1 deletion scripts/legacy_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ EOF
echo "📦 IPA location: build/HomeInventoryModular.ipa"
echo ""
echo "📤 Upload to TestFlight:"
echo " xcrun altool --upload-app -f build/HomeInventoryModular.ipa -u griffinradcliffe@gmail.com -p lyto-qjbu-uffy-hsgb"
echo " xcrun altool --upload-app -f build/HomeInventoryModular.ipa -u griffinradcliffe@gmail.com -p <APP_SPECIFIC_PASSWORD>"
else
echo "❌ Export failed"
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/monitor_and_upload.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Configuration
ARCHIVE_PATH = "#{ENV['HOME']}/Library/Developer/Xcode/Archives"
USERNAME = 'griffinradcliffe@gmail.com'
PASSWORD = 'lyto-qjbu-uffy-hsgb'
PASSWORD = '<APP_SPECIFIC_PASSWORD>'
TEAM_ID = '2VXBQV4XC9'

puts "🔍 Monitoring for new archives..."
Expand Down
2 changes: 1 addition & 1 deletion scripts/swift6_workaround.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def upload_to_testflight
"-f", ipa_path,
"-t", "ios",
"-u", "griffinradcliffe@gmail.com",
"-p", "lyto-qjbu-uffy-hsgb"
"-p", "<APP_SPECIFIC_PASSWORD>"
]

if system(*upload_cmd)
Expand Down
2 changes: 1 addition & 1 deletion scripts/testflight_upload.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
APP_IDENTIFIER = 'com.homeinventory.app'
IPA_PATH = 'build/HomeInventoryModular-1.0.6.ipa'
USERNAME = 'griffinradcliffe@gmail.com'
APP_SPECIFIC_PASSWORD = 'lyto-qjbu-uffy-hsgb'
APP_SPECIFIC_PASSWORD = '<APP_SPECIFIC_PASSWORD>'
TEAM_ID = '2VXBQV4XC9'

puts "🚀 TestFlight Upload via Ruby Spaceship"
Expand Down
2 changes: 1 addition & 1 deletion upload_to_testflight.rb
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,5 @@
puts ""
puts "Credentials available:"
puts "• Username: griffinradcliffe@gmail.com"
puts "• App-specific password: lyto-qjbu-uffy-hsgb"
puts "• App-specific password: <APP_SPECIFIC_PASSWORD>"
puts "• Team ID: 2VXBQV4XC9"