report signal level as float #5
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: Build and deploy to ghcr.io | |
on: | |
workflow_dispatch: | |
inputs: | |
reason: | |
required: true | |
description: 'Reason for running this workflow' | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build: | |
name: 'Build' | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Build:checkout" | |
uses: actions/checkout@v3 | |
- name: "Build:qemu" | |
uses: docker/setup-qemu-action@v2 | |
- name: "Build:buildx" | |
uses: docker/setup-buildx-action@v2 | |
- name: "Build:login" | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: 'Build:buildandpush' | |
uses: docker/[email protected] | |
with: | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
tags: ghcr.io/${{ github.repository }}:latest,ghcr.io/${{ github.repository }}:${{ github.run_number }}-${{ github.sha }} |