Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
LandOfTheRair/.github/workflows/release-tags.yml
View runs Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
101 lines (83 sloc)
2.86 KB
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 New Tags | |
on: | |
push: | |
tags: | |
- 'v*' # Any pushed tag | |
jobs: | |
build: | |
name: Create Release | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# os: [macos-latest, ubuntu-latest, windows-latest] | |
os: [windows-latest] | |
node-version: [16.12.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- run: npm run setup:full | |
- run: npm run lint | |
- run: npm run build | |
- run: cd server && npm run build:package | |
- uses: little-core-labs/get-git-tag@v3.0.1 | |
id: loadTagName | |
- uses: pCYSl5EDgo/cat@master | |
id: loadChangelog | |
with: | |
path: CHANGELOG-current.md | |
- name: Create Release | |
id: createRelease | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
body: ${{ steps.loadChangelog.outputs.text }} | |
draft: false | |
prerelease: false | |
- name: Upload Server Binary | |
id: uploadReleaseAsset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.createRelease.outputs.upload_url }} | |
asset_path: ./server/build/lotr-server.exe | |
asset_name: lotr-server.exe | |
asset_content_type: application/vnd.microsoft.portable-executable | |
#- name: Deploy Server | |
# uses: AlexxNB/caprover-action@v1 | |
# with: | |
# server: 'https://captain.server.rair.land' | |
# password: '${{ secrets.CAPROVER_PASSWORD }}' | |
# appname: 'game' | |
#- name: Deploy to Netlify | |
# uses: nwtgck/actions-netlify@v1.1 | |
# with: | |
# publish-dir: './client/dist' | |
# production-branch: master | |
# github-token: ${{ secrets.GITHUB_TOKEN }} | |
# deploy-message: "Deploy from GitHub Actions" | |
# enable-pull-request-comment: false | |
# enable-commit-comment: true | |
# overwrites-pull-request-comment: true | |
# env: | |
# NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
# NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
#- name: Post to Reddit | |
# uses: bluwy/release-for-reddit-action@v1 | |
# with: | |
# username: ${{ secrets.REDDIT_USERNAME }} | |
# password: ${{ secrets.REDDIT_PASSWORD }} | |
# app-id: ${{ secrets.REDDIT_APP_ID }} | |
# app-secret: ${{ secrets.REDDIT_APP_SECRET }} | |
# subreddit: Rasterkhann | |
# title: Rasterkhann ${{ steps.loadTagName.outputs.tag }} Update | |
# comment: ${{ steps.loadChangelog.outputs.text }} | |
# url: ${{ steps.create_release.outputs.html_url }} | |
# notification: true |