feat: [#459] Display how long N3DR was running. (#475) #121
Workflow file for this run
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: snapcraft | |
'on': | |
push: | |
tags: | |
- 7.** | |
jobs: | |
release: | |
uses: ./.github/workflows/release.yml | |
snapcraft: | |
needs: [release] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
ref: main | |
- uses: snapcore/[email protected] | |
with: | |
path: build/package | |
id: snapcraft | |
- run: | | |
snap --version | |
echo "check ldd version" | |
ldd --version | |
sudo snap install --dangerous ${{ steps.snapcraft.outputs.snap }} | |
n3dr --version | grep "[0-9]\." | |
- uses: snapcore/[email protected] | |
env: | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_LOGIN }} | |
with: | |
snap: ${{ steps.snapcraft.outputs.snap }} | |
release: candidate |