Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Update README.md

Update README.md #90

Workflow file for this run

name: Release
on:
push:
branches:
- main
tags:
- v*
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Make release
if: startsWith(github.ref, 'refs/tags/')
run: |
mkdir HM3CustomMaps
cp manifest.json HM3CustomMaps/
cp -R content HM3CustomMaps/content
zip -r HM3CustomMaps.framework.zip HM3CustomMaps
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
HM3CustomMaps.framework.zip