Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bleeding edge action #279

Merged
merged 2 commits into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/tuo-dev-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest]
os: [ windows-latest ]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -78,12 +78,12 @@ jobs:
exclusions: '*.zip manifest.xml'

- name: Move output
run: mv "${{ env.CUO_OUTPUT_PATH }}/${{ runner.os }}${{ env.CUO_ZIP_NAME }}" upload
run: mv "${{ env.CUO_OUTPUT_PATH }}/${{ env.CUO_ZIP_NAME }}" upload

- name: Upload Release
uses: ncipollo/release-action@v1
with:
artifacts: "upload/${{ runner.os }}${{ env.CUO_ZIP_NAME }}"
artifacts: "upload/${{ env.CUO_ZIP_NAME }}"
name: 'TazUO Bleeding Edge'
body: 'These are built automatically on the dev branch. These may include features that are still being worked on/not complete.'
makeLatest: false
Expand Down
Loading