Feat/rust cicd (#131) #1
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
name: GBFS Rust Language Bindings - Publish | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "models/rust/**" | |
jobs: | |
build-publish: | |
name: build-publish-job | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./models/rust | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Load secrets from 1Password | |
uses: 1password/[email protected] | |
with: | |
export-env: true # Export loaded secrets as environment variables | |
env: | |
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} | |
CARGO_REGISTRY_TOKEN: "op://rbiv7rvkkrsdlpcrz3bmv7nmcu/ms6rxv2lhpok44mg32wuihbv7q/credential" | |
- name: Publish to crates.io | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ env.CARGO_REGISTRY_TOKEN }} | |
run: cargo publish --token $CARGO_REGISTRY_TOKEN | |