Update tag name #2
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: Continous Build | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Pesde | |
uses: lumin-org/[email protected] | |
with: | |
cache: true | |
- name: Install Packages | |
run: pesde install | |
- name: Build | |
run: rojo build build.project.json --output ./ui-components.rbxm | |
- name: Get Timestamp | |
id: date | |
run: echo "::set-output name=current_datetime::$(date +'%Y-%m-%d %H:%M:%S')" | |
- name: Release | |
uses: softprops/[email protected] | |
with: | |
tag_name: CB | |
name: Continous Build | |
prerelease: true | |
generate_release_notes: true | |
body: | | |
Build created at ${{ steps.date.outputs.current_date }} | |
Latest commit: ${{ github.sha }} | |
files: | | |
./ui-components.rbxm |