Remove Splash Text #86
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: ZIP | |
on: [push, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Extract branch name | |
shell: bash | |
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT | |
id: extract_branch | |
- name: Extract commit ish | |
shell: bash | |
run: echo "ish=$(echo ${GITHUB_SHA::7})" >> $GITHUB_OUTPUT | |
id: extract_ish | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
# Artifact name | |
name: unity-base-${{ steps.extract_branch.outputs.branch }}-${{ steps.extract_ish.outputs.ish }}.${{ github.run_id }} | |
# A file, directory or wildcard pattern that describes what to upload | |
path: | | |
assets/** | |
LICENSE.md | |
pack.mcmeta | |
pack.png |