Skip to content

feat(cli, export): re-write using CLI and add export command #3

feat(cli, export): re-write using CLI and add export command

feat(cli, export): re-write using CLI and add export command #3

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Install dependencies
run: npm clean-install
-
name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
-
name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Push Docker Image
run: docker push bedasoftware/fhirsnake:latest