Skip to content

Fixing older kmail imports #19

Fixing older kmail imports

Fixing older kmail imports #19

Workflow file for this run

name: Deploy KoLmafia script
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
steps:
- name: git-checkout
uses: actions/checkout@v3
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build script
run: yarn workspace excavator-script run build
- name: Push
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: release
FOLDER: packages/excavator-script/dist # The directory where your assets are generated
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub will automatically add this - you don't need to bother getting a token
MESSAGE: "Build: ({sha}) {msg}" # The commit message
SKIP_EMPTY_COMMITS: true