Skip to content

Bump express from 4.13.4 to 4.19.2 in /web/xterm.js #69

Bump express from 4.13.4 to 4.19.2 in /web/xterm.js

Bump express from 4.13.4 to 4.19.2 in /web/xterm.js #69

Workflow file for this run

name: Publish Docker image
on: [push]
jobs:
push-to-ghcr:
name: Push Docker image to GitHub Packages
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Get short SHA
id: short
run: |
echo "::set-output name=sha::$(git rev-parse --short HEAD)"
echo "::set-output name=branch::$(echo ${GITHUB_REF#refs/heads/})"
- name: Log in to GitHub Docker Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container image
uses: docker/build-push-action@v2
with:
context: .
file: docker/Dockerfile
push: true
tags: |
ghcr.io/${{ github.repository }}/minimega:${{ steps.short.outputs.sha }}
ghcr.io/${{ github.repository }}/minimega:${{ steps.short.outputs.branch }}