move bulk delete reports into attached text file #141
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 Container | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: | | |
${{ secrets.CONFIG_SSH_KEY }} | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Build And Publish | |
uses: macbre/push-to-ghcr@master | |
with: | |
image_name: donovandmc/maidboye | |
github_token: ${{ secrets.GITHUB_TOKEN }} |