-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (35 loc) · 1.44 KB
/
releases.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: New data releases
on:
schedule:
- cron: "0 0 * * *"
jobs:
build:
name: New data releases
runs-on: ubuntu-latest
steps:
- id: timezone_db
uses: pozetroninc/github-action-get-latest-release@master
with:
repository: evansiroky/timezone-boundary-builder
- id: natural_earth_vector
uses: pozetroninc/github-action-get-latest-release@master
with:
repository: nvkelso/natural-earth-vector
- uses: actions/checkout@v4
- name: create an issue - new tzdb
if: ${{ steps.timezone_db.outputs.release != '2024a' }}
uses: dacbd/create-issue-action@main
with:
token: ${{ github.token }}
title: New tzdb release
body: New version of tzdb available- ${{steps.timezone_db.outputs.release}}
see https://github.com/evansiroky/timezone-boundary-builder/releases for new release
- uses: actions/checkout@v4
- name: create an issue - new natural earth
if: ${{ steps.natural_earth_vector.outputs.release != 'v5.1.2' }}
uses: dacbd/create-issue-action@main
with:
token: ${{ github.token }}
title: New natural earth vectors release
body: New version of natural earth vectors available- ${{steps.natural_earth_vector.outputs.release}}
see https://github.com/nvkelso/natural-earth-vector/releases for new release