refactor(client): Replace / with . for consistency when stating direc… #3
Workflow file for this run
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: Release | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
create-release: | |
name: Build and Create Tagged Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install archive tools | |
run: sudo apt-get update && sudo apt-get install -y zip | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.repository.default_branch }} | |
- name: Get variables | |
id: get_vars | |
run: | | |
echo '::set-output name=SHORT_SHA::$(git rev-parse --short HEAD)' | |
echo '::set-output name=DATE::$(date +'%D')' | |
- name: Bump manifest version | |
run: node .github/actions/bump-manifest-version.js | |
env: | |
TGT_RELEASE_VERSION: ${{ github.ref_name }} | |
- name: Push manifest change | |
uses: EndBug/add-and-commit@v8 | |
with: | |
add: fxmanifest.lua | |
push: true | |
author_name: Manifest Bumper | |
author_email: 41898282+github-actions[bot]@users.noreply.github.com | |
message: "chore: bump manifest version to ${{ github.ref_name }}" | |
- name: Update tag ref | |
uses: EndBug/latest-tag@latest | |
with: | |
ref: ${{ github.ref_name }} | |
- name: Bundle files | |
run: | | |
mkdir -p ./temp/vanish_basics | |
cp ./{LICENSE,README.md,fxmanifest.lua} ./temp/vanish_basics | |
cp -r ./{client,meta,server,shared,stream} ./temp/vanish_basics | |
cd ./temp && zip -r ../vanish_basics.zip ./vanish_basics | |
- name: Create Release | |
uses: marvinpinto/[email protected] | |
id: auto_release | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
title: '${{ env.RELEASE_VERSION }}' | |
prerelease: false | |
files: ${{ github.event.repository.name }}.zip | |
env: | |
CI: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |