diff --git a/.bumpversion.cfg b/.bumpversion.cfg deleted file mode 100644 index 8d9fa76..0000000 --- a/.bumpversion.cfg +++ /dev/null @@ -1,11 +0,0 @@ -[bumpversion] -current_version = 0.0.0 -commit = False -tag = True -tag_name = {new_version} - -[semver] -main_branches = master -major_branches = -minor_branches = feature -patch_branches = hotfix, bugfix \ No newline at end of file diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml deleted file mode 100644 index b70c1f9..0000000 --- a/.github/workflows/version.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Version & Release - -on: - push: - branches: - - master - -jobs: - CheckVersion: - runs-on: ubuntu-latest - container: - image: rightbrainnetworks/auto-semver - steps: - - name: Checkout - uses: actions/checkout@v1 - - name: Run Auto-Semver - id: semver - uses: RightBrain-Networks/semver-action@1.0.0 - - name: Create Release - id: create_release - uses: actions/create-release@v1 - if: steps['semver']['outputs']['RETURN_STATUS'] == '0' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ steps.semver.outputs.SEMVER_NEW_VERSION }} - release_name: ${{ steps.semver.outputs.SEMVER_NEW_VERSION }} - body: Release Version ${{ steps.semver.outputs.SEMVER_NEW_VERSION }} - draft: false - prerelease: false \ No newline at end of file diff --git a/Contributors.md b/Contributors.md index fe0b3a0..e9f95c0 100644 --- a/Contributors.md +++ b/Contributors.md @@ -2,17 +2,19 @@ ## Maintainers -Name | Email | Twitter | ------|-------|---------| -[Joseph Manley](https://github.com/josephbmanley) | [joseph@cloudsumu.com](mailto:joseph@cloudsumu.com) | [@josephbmanley](https://twitter.com/josephbmanley) +Name | Email | +-----|-------| +[Layla Manley](https://github.com/yeslayla) | [layla@layla.gg](mailto:layla@layla.gg) ## Contributors A giant thanks to everyone put in the time to improve Godot CI! -Name | Email | Twitter | ----- | ----- | ------- | +Name | Email | +---- | ----- | [Tomer Keren](https://github.com/Tadaboody) | [tomerpet@gmail.com](tomerpet@gmail.com) | [@Tadaboody](https://twitter.com/Tadaboody) +[stonedDiscord](https://github.com/stonedDiscord) | | +[Bioblaze Payne](https://github.com/Bioblaze)|BioblazePayne@gmail.com|[BioblazePayne](https://twitter.com/BioblazePayne) ## Additional Credits diff --git a/Dockerfile b/Dockerfile index 94ea8a7..51ca8e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ LABEL "com.github.actions.description"="Build a Godot project for multiple platf LABEL "com.github.actions.icon"="loader" LABEL "com.github.actions.color"="blue" -LABEL repository="https://github.com/josephbmanley/build-godot-action" +LABEL repository="https://github.com/yeslayla/build-godot-action" LABEL homepage="https://cloudsumu.com/" LABEL maintainer="Joseph Manley " diff --git a/ReadMe.md b/ReadMe.md index d6f6f6f..8b3db9b 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -1,7 +1,9 @@ -![Release Version](https://img.shields.io/github/v/release/josephbmanley/build-godot-action) ![Test Action](https://github.com/josephbmanley/build-godot-action/workflows/Test%20Action/badge.svg) +![Release Version](https://img.shields.io/github/v/release/yeslayla/build-godot-action) ![Test Action](https://github.com/yeslayla/build-godot-action/workflows/Test%20Action/badge.svg) ![Build Godot Project](logo.png) +[**This is the WIP branch for 2.x of this project. For a stable experience and documentation please use the latest 1.x**](https://github.com/yeslayla/build-godot-action/tree/1.x) + This action builds the godot project in your `$GITHUB_WORKSPACE`, so that you can easily automate builds. Table of Contents: @@ -42,7 +44,7 @@ jobs: lfs: true - name: Build id: build - uses: manleydev/build-godot-action@v1.4.1 + uses: yeslayla/build-godot-action@v1 with: name: example preset: ${{ matrix.platform }} @@ -82,7 +84,7 @@ Additionally if you are not using a matrix, you can set the export preset as the ```yaml - name: Build id: build - uses: manleydev/build-godot-action@v1.4.1 + uses: yeslayla/build-godot-action@v1.4.1 with: name: example preset: win32 @@ -95,7 +97,7 @@ To change the export name, you can the `name` parameter to whatever you want you ```yaml - name: Build id: build - uses: manleydev/build-godot-action@v1.4.1 + uses: yeslayla/build-godot-action@v1.4.1 with: name: test # This project will export with the name "test" ``` @@ -107,7 +109,7 @@ This example is set to build with debug mode enable. To disable debug, either se ```yaml - name: Build id: build - uses: manleydev/build-godot-action@v1.4.1 + uses: yeslayla/build-godot-action@v1.4.1 with: name: example preset: ${{ matrix.platform }} @@ -121,7 +123,7 @@ If your project is located in a subdirectory, you can use the `projectDir` to ch ```yaml - name: Build id: build - uses: manleydev/build-godot-action@v1.4.1 + uses: yeslayla/build-godot-action@v1.4.1 with: name: example preset: ${{ matrix.platform }} @@ -142,7 +144,7 @@ Example: ```yaml steps: -- uses: manleydev/build-godot-action@[VERSION] +- uses: yeslayla/build-godot-action@[VERSION] with: name: godot-project preset: HTML5 diff --git a/action.yml b/action.yml index 51d3ed0..77b7cf5 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,6 @@ name: "Build Godot" description: "Build a Godot project for multiple platforms" -author: josephbmanley +author: yeslayla inputs: name: description: 'Name of the exported binary'