diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000000..936a3dfa9079 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,48 @@ +name: "Release App" +# Release App creates a release of the app and issues a release PR. +# +# See: https://www.appfair.net +on: + # Releases can be scheduled (e.g., weekly) if an access token is specified + schedule: + - cron: '0 */6 * * *' + #- cron: '0,15,30,45 * * * *' + #- cron: '0 0,8,16 * * *' + workflow_dispatch: + inputs: + bump_major: + type: boolean + description: 'Bump major version' + default: false + bump_minor: + type: boolean + description: 'Bump minor version' + default: false + bump_patch: + type: boolean + description: 'Bump patch version' + default: true + version: + type: string + description: 'Set specific version' + required: false + +jobs: + call-workflow: + uses: appfair/fairground/.github/workflows/release.yml@main + with: + # bump only patch when unspecified (e.g., when run by cron) + bump_major: ${{ github.event.inputs.bump_major == 'true' }} + bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} + bump_patch: ${{ github.event.inputs.bump_patch != 'false' }} + version: ${{ github.event.inputs.version }} + permissions: + contents: write + pull-requests: write + secrets: + # Requires org settings + # https://github.com/organizations/Silly-Little-App/settings/actions + # to enable "Allow GitHub Actions to create and approve pull requests" + #token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} + diff --git a/App.yml b/App.yml index 43eb90d0181d..a61ef8d97434 100644 --- a/App.yml +++ b/App.yml @@ -23,7 +23,7 @@ app: # marketplace-issued indentifiers for the distribution channels for this app markets: - #testflight: "0123456789" # the assigned TestFlight id + testflight: "1661006261" # the assigned TestFlight id #testflighturl: "https://…" # the public TestFlight beta link #appstore: "0123456789" # the assigned App Store id #appstoreurl: "https://…" # the official App Store landing page diff --git a/README.md b/README.md index 6c6eeb180e4a..3a2b4369ec3d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## App-Name: an App Fair app +## Silly-Little-App: an App Fair app The _Description_ section of the `README.md` file contains the description of this app as it will appear in App Fair. @@ -10,15 +10,15 @@ It supports **basic** formatting, but not images, lists, or links. ### App Fair Installation Once the initial release has been created, -App-Name can be downloaded and installed using +Silly-Little-App can be downloaded and installed using [App Fair.app](https://www.appfair.app) by opening -[appfair.app/fair?app=App-Name](https://appfair.app/fair?app=App-Name). +[appfair.app/fair?app=Silly-Little-App](https://appfair.app/fair?app=Silly-Little-App). ## Support The landing page for this app is available at -[https://App-Name.github.io/App/](https://App-Name.github.io/App/). +[https://Silly-Little-App.github.io/App/](https://Silly-Little-App.github.io/App/). Community Support for this app is available on the [Discussion](../../discussions) forums. diff --git a/appfair.xcconfig b/appfair.xcconfig index ee2539914b0e..0ca62573cb80 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -1,16 +1,16 @@ // The configuration file for your App Fair App. See: https://www.appfair.net // PRODUCT_NAME is the app name, consisting of two words separated by a space -PRODUCT_NAME = App Name +PRODUCT_NAME = Silly Little App // PRODUCT_BUNDLE_IDENTIFIER must be in the form: "app.App-Name" -PRODUCT_BUNDLE_IDENTIFIER = app.App-Name +PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1 +MARKETING_VERSION = 0.0.2488 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 1 +CURRENT_PROJECT_VERSION = 1051 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities @@ -19,7 +19,7 @@ APP_CATEGORY = public.app-category.utilities // SUPPORTED_PLATFORMS = macosx // SUPPORTED_PLATFORMS = iphoneos iphonesimulator // SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator android -SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator +SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator // Catalyst settings for iOS apps on macOS // SUPPORTS_MACCATALYST = YES diff --git a/docs/CNAME b/docs/CNAME new file mode 100644 index 000000000000..8542e1dc184a --- /dev/null +++ b/docs/CNAME @@ -0,0 +1 @@ +silly-little-app.appfair.net \ No newline at end of file