Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
24 changes: 24 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# .github/release.yml

changelog:
exclude:
labels:
- ignore-for-release
categories:
- title: New features
labels:
- "enhancement"
- "help wanted"
- title: In progress
labels:
- "in progress"
- title: Translation updates
labels:
- "translations"
- title: Bug fixes
labels:
- "bug"
- "invaild"
- title: Other Changes
labels:
- "*"
9 changes: 7 additions & 2 deletions .github/workflows/godot-build-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2.4.0
# Runs a set of commands using the runners shell
- name: Read version file
id: package
uses: juliangruber/read-file-action@v1
with:
path: ./version.dat
- name: Build everything
run: |
sudo chmod +x ./build_game.sh
Expand All @@ -39,8 +44,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: $(git rev-parse --short "$GITHUB_SHA")
release_name: Release $(git rev-parse --short "$GITHUB_SHA")
tag_name: ${{ steps.package.outputs.content }}
release_name: Release ${{ steps.package.outputs.content }}
draft: false
prerelease: false
- name: Upload Release Asset - x11
Expand Down
89 changes: 0 additions & 89 deletions GithubUpdate.gd

This file was deleted.

61 changes: 0 additions & 61 deletions GithubUpdate.tscn

This file was deleted.

70 changes: 0 additions & 70 deletions TagDataParser.gd

This file was deleted.

Loading