Merge pull request #177 from ospring/fixBackToHome #43
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: Deploy KoboRoot.tgz | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
job: | |
name: Create and deploy KoboRoot | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
path: repo | |
- name: Get cacert | |
run: | | |
cd repo | |
./updateCABundle.sh | |
- name: Create KoboRoot | |
run: | | |
cd repo | |
./makeKoboRoot.sh | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: false | |
automatic_release_tag: "latest" | |
title: "Latest release" | |
files: | | |
repo/KoboRoot.tgz |