0.2.11 #5
Annotations
3 warnings
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Upload build artifacts
No files were found with the provided path: dist/Topaz-win.zip
dist/Topaz-linux.zip
dist/Topaz-mac.zip
release:
needs: build
strategy:
matrix:
platform: [win, linux, mac]
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Get Release ID
id: get_release
run: |
release_id=$(gh release view refs/tags/v0.2.11 --json id --jq '.id' || echo "")
echo "release_id=$release_id" >> $GITHUB_ENV
env:
GITHUB_TOKEN: ***
- name: Create Release if Not Exists
if: env.release_id == ""
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ***
with:
tag_name: refs/tags/v0.2.11
release_name: Release refs/tags/v0.2.11
body: |
Release of version refs/tags/v0.2.11.
draft: false
prerelease: false
- name: Upload Release Assets
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ***
with:
upload_url:
asset_path: dist/Topaz-win.zip
asset_name: Topaz-win.zip
asset_content_type: application/zip. No artifacts will be uploaded.
|
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "linux-build".
Please update your workflow to use v4 of the artifact actions.
Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
|
Loading