Skip to content

Disallow submitting music packs by default #131

Disallow submitting music packs by default

Disallow submitting music packs by default #131

Workflow file for this run

name: publish
permissions:
packages: write
contents: read
on:
push:
branches:
- master
workflow_dispatch:
jobs:
publish-docker-image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up docker
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the docker image
run: |
docker build . --tag ghcr.io/deckthemes/cssloader-themeapi:latest
docker push ghcr.io/deckthemes/cssloader-themeapi:latest