Fixing snapshot/migrate functionality. Adding multidisk support #6
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: 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 }} |