-
Notifications
You must be signed in to change notification settings - Fork 28
41 lines (38 loc) · 1.24 KB
/
release.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
40
41
---
name: Release
on:
push:
tags:
- "netcdf-v*"
- "netcdf-sys-v*"
- "netcdf-src-v*"
- "netcdf-derive-v*"
env:
CARGO_TERM_COLOR: always
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Install netCDF
run: sudo apt-get update && sudo apt-get install libnetcdf-dev
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Publish netcdf-src
if: "${{ startsWith(github.ref_name, 'netcdf-src-v') }}"
run: cargo publish --package netcdf-src --token "${{ secrets.CRATES_IO_TOKEN }}"
- name: Publish netcdf-sys
if: "${{ startsWith(github.ref_name, 'netcdf-sys-v') }}"
run: cargo publish --package netcdf-sys --token "${{ secrets.CRATES_IO_TOKEN }}"
- name: Publish netcdf-derive
if: "${{ startsWith(github.ref_name, 'netcdf-derive-v') }}"
run: cargo publish --package netcdf-derive --token "${{ secrets.CRATES_IO_TOKEN }}"
- name: Publish netcdf
if: "${{ startsWith(github.ref_name, 'netcdf-v') }}"
run: cargo publish --package netcdf --token "${{ secrets.CRATES_IO_TOKEN }}"