Remove this key as it no longer appears to exist #231
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: "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 }} |