2 directory names / script names differed only in case #149
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: "Latest game archive" | |
on: | |
push: | |
branches: | |
- "master" | |
tags-ignore: | |
- "*" | |
jobs: | |
pre-release: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout source code" | |
uses: "actions/checkout@v4" | |
with: | |
fetch-depth: 0 | |
- name: "Install Linux deps" | |
run: | | |
sudo apt install gettext git | |
- name: "Creating the archive" | |
run: | | |
git fetch --tags --force && ./utils/archive.sh | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "Latest game archive" | |
files: | | |
LICENSE | |
gameshell.sh | |
Dockerfile |