-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added daily dependabot submodule update check & Action to draft relea…
…se with assets (#1)
- Loading branch information
1 parent
feb7161
commit cb854b8
Showing
2 changed files
with
73 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: 2 | ||
|
||
updates: | ||
# Checks daily if submodules were updated. | ||
- package-ecosystem: "gitsubmodule" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
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,65 @@ | ||
name: Make & release GeoJSON | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
do-tests: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
concurrency: | ||
group: cicd-tests | ||
steps: | ||
- name: Checkout Git submodules | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Setup Python 3.10 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Run "make_geojson.py" | ||
run: python make_geojson.py | ||
|
||
- name: Check output existence | ||
uses: thebinaryfelix/[email protected] | ||
with: | ||
files: 'output/airports_full_all_feet.geojson, output/airports_full_all_meter.geojson' | ||
|
||
- name: Create release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release for ${{ github.ref_name }} @ ${{ github.sha }} | ||
body: | | ||
Automatic update release made through GitHub Actions. | ||
draft: true | ||
prerelease: false | ||
|
||
- name: Upload asset `full_all_feet` | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./output/airports_full_all_feet.geojson | ||
asset_name: airports_full_all_feet.geojson | ||
asset_content_type: application/geo+json | ||
|
||
- name: Upload asset `full_all_meter` | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./output/airports_full_all_meter.geojson | ||
asset_name: airports_full_all_meter.geojson | ||
asset_content_type: application/geo+json |