This file contains hidden or 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
| type WeatherObject { | |
| id: Int | |
| main: String | |
| } | |
| type CurrentWeather { | |
| temp: Float | |
| weather: [WeatherObject]! | |
| } |
This file contains hidden or 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
| type WeatherObject { | |
| id: Int | |
| main: String | |
| } | |
| type CurrentWeather { | |
| temp: Float | |
| weather: [WeatherObject]! | |
| } |
This file contains hidden or 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
| { | |
| "lat": 39.31, | |
| "lon": -74.5, | |
| "timezone": "America/New_York", | |
| "timezone_offset": -18000, | |
| "current": { | |
| "dt": 1646318698, | |
| "sunrise": 1646306882, | |
| "sunset": 1646347929, | |
| "temp": 282.21, |
This file contains hidden or 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
| { | |
| "lat": 39.31, | |
| "lon": -74.5, | |
| "timezone": "America/New_York", | |
| "timezone_offset": -18000, | |
| "current": { | |
| "dt": 1646318698, | |
| "sunrise": 1646306882, | |
| "sunset": 1646347929, | |
| "temp": 282.21, |
This file contains hidden or 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
| { | |
| "lat": 39.31, | |
| "lon": -74.5, | |
| "timezone": "America/New_York", | |
| "timezone_offset": -18000, | |
| "current": { | |
| "dt": 1646318698, | |
| "sunrise": 1646306882, | |
| "sunset": 1646347929, | |
| "temp": 282.21, |
This file contains hidden or 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
| { | |
| "lat": 39.31, | |
| "lon": -74.5, | |
| "timezone": "America/New_York", | |
| "timezone_offset": -18000, | |
| "current": { | |
| "dt": 1646318698, | |
| "sunrise": 1646306882, | |
| "sunset": 1646347929, | |
| "temp": 282.21, |
This file contains hidden or 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
| name: "Android Build" | |
| on: | |
| workflow_call: | |
| inputs: | |
| environment: | |
| required: true | |
| type: string | |
| publish: | |
| required: false |
This file contains hidden or 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
| # Second Job | |
| build-and-release-android: | |
| needs: versioning | |
| uses: ./.github/workflows/android-build.yml | |
| with: | |
| environment: release | |
| publish: true | |
| secrets: inherit |
This file contains hidden or 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
| - name: "Automated Release" | |
| uses: "marvinpinto/action-automatic-releases@latest" | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| automatic_release_tag: "latest" | |
| title: Build |
This file contains hidden or 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
| - name: "Automated Release" | |
| uses: "marvinpinto/action-automatic-releases@latest" | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| automatic_release_tag: "latest" | |
| title: ${{ inputs.release-title }} |