Skip to content

Install signal desktop #236

Install signal desktop

Install signal desktop #236

Workflow file for this run

---
name: "Tests"
on:
push:
branches-ignore:
- "main"
jobs:
gh_tests:
runs-on: "ubuntu-latest"
env:
UBUNTU_LTS_VERSION: "20.04"
steps:
- uses: "actions/[email protected]"
with:
lfs: true
fetch-depth: 0
- name: "Retrieve the short SHA"
id: "sha"
run: echo "::set-output name=value::$(echo ${GITHUB_SHA::8})"
- name: "Set up QEMU"
uses: "docker/[email protected]"
- name: "Set up Docker Buildx"
uses: "docker/[email protected]"
- name: "Publish to GitHub Packages"
uses: "docker/[email protected]"
with:
context: .
file: "./Dockerfile"
build-args: |
UBUNTU_VERSION=${{ env.UBUNTU_LTS_VERSION }}
platforms: "linux/amd64"
load: true
tags: |
ghcr.io/marvinpinto/kitchensink:${{ env.UBUNTU_LTS_VERSION }}-latest
ghcr.io/marvinpinto/kitchensink:${{ env.UBUNTU_LTS_VERSION }}-${{ steps.sha.outputs.value }}
- uses: "marvinpinto/action-keybase-notifications@latest"
if: always()
with:
job_status: ${{ job.status }}
on_success: "never"
on_failure: "always"
opensentinel_token: ${{ secrets.OSL_TOKEN }}