Update NuvlaEdge version to 2.16.2 #814
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: "NuvlaEdge Installer Build" | |
on: | |
push: | |
branches: | |
- '**' | |
tags: | |
- "*.*.*" | |
# tags-ignore: | |
# - '*.*.*' | |
pull_request: | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Multi-arch docker image build prerequired | |
run: sudo docker run --privileged linuxkit/binfmt:v0.7 | |
- name: Build and deploy on architecture | |
env: | |
DOCKER_USERNAME: ${{ secrets.SIXSQ_DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.SIXSQ_DOCKER_PASSWORD }} | |
run: cd nuvlaedge-installer && ./container-release.sh | |
notify: | |
if: always() | |
name: Post Workflow Status To Slack | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slack Workflow Notification | |
uses: Gamesight/slack-workflow-status@master | |
with: | |
# Required Input | |
repo_token: ${{secrets.GITHUB_TOKEN}} | |
slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL}} | |
# Optional Input | |
icon_emoji: ':rocket:' |