fix: trim /
from lambdaServer url
#217
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: lnlambda release package | |
on: | |
release: | |
types: [created] | |
tags: | |
- lnlambda-v* | |
push: | |
workflow_run: | |
workflows: | |
- "lndart.cln packages check" | |
branches: [ main ] | |
types: | |
- completed | |
jobs: | |
publishing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v2 | |
- name: 'publish lnlambda to to Pub.dev' | |
uses: k-paxian/dart-package-publisher@master | |
with: | |
credentialJson: ${{ secrets.CREDENTIAL_JSON }} | |
flutter: false | |
skipTests: true | |
dryRunOnly: ${{ github.event_name != 'release' }} | |
relativePath: './packages/lnlambda/' |