Skip to content

Merge branch 'decentralized-language' into staging #17

Merge branch 'decentralized-language' into staging

Merge branch 'decentralized-language' into staging #17

name: Publish Staging AD4M
on:
push:
branches:
- staging
jobs:
create-release:
runs-on: ubuntu-20.04
outputs:
upload_url: ${{ steps.create-release.outputs.upload_url }}
steps:
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Create Tags From
id: create_tag
uses: jaywcjlove/create-tag-action@v1.3.14
- name: create release ad4m launcher
id: create-release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.create_tag.outputs.version }}
release_name: AD4M Launcher & Host ${{ steps.create_tag.outputs.version }} Prerelease
body: See the assets to download this version and install.
draft: true
prerelease: true
build-launcher-binary:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16.x]
needs:
- create-release
runs-on: ${{ matrix.platform }}
steps:
- name: Fetch source code
uses: actions/checkout@v2
- name: Install Rust stable
uses: actions-rs/toolchain@v1
with:
override: true
toolchain: 1.63.0
- run: rustup target add wasm32-unknown-unknown
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: get version
run: echo "PACKAGE_VERSION=$(node -p "require('./ui/package.json').version")" >> $GITHUB_ENV
- name: Extract version
id: extract_version
uses: Saionaro/extract-package-version@v1.1.1
with:
path: ui
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Yarn Install
run: yarn install --no-cache
- name: Build AD4M-Host & build Launcher binary (macos-latest)
if: matrix.platform == 'macos-latest'
run: yarn run build-macos
- name: Build AD4M-Host & build Launcher binary (windows-latest)
if: matrix.platform == 'windows-latest'
run: yarn run build-windows
- name: Build AD4M-Host & build Launcher binary (linux-latest)
if: matrix.platform == 'ubuntu-latest'
run: yarn run build-linux
- name: Upload Release Deb Asset
id: upload-release-deb-asset
if: matrix.platform == 'ubuntu-latest'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: /home/runner/work/ad4m/ad4m/target/release/bundle/deb/ad4m_${{ steps.extract_version.outputs.version }}_amd64.deb
asset_name: ad4m_${{ steps.extract_version.outputs.version }}_amd64.deb
asset_content_type: application/octet-stream
- name: Upload Release AD4M Host Linux Binary
id: upload-release-linux-ad4m-host-binary
if: matrix.platform == 'ubuntu-latest'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: /home/runner/work/ad4m/ad4m/host/dist/ad4m-linux-x64
asset_name: ad4m-linux-${{ steps.extract_version.outputs.version }}-x64
asset_content_type: application/octet-stream
- name: Upload Release Macos Asset
id: upload-release-macos-asset
if: matrix.platform == 'macos-latest'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: /Users/runner/work/ad4m/ad4m/target/release/bundle/dmg/AD4M_${{ steps.extract_version.outputs.version }}_x64.dmg
asset_name: AD4M_${{ steps.extract_version.outputs.version }}_x64.dmg
asset_content_type: application/octet-stream
- name: Upload Release AD4M Host Macos Binary
id: upload-release-macos-ad4m-host-binary
if: matrix.platform == 'macos-latest'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: /Users/runner/work/ad4m/ad4m/host/dist/ad4m-macos-x64
asset_name: ad4m-macos-${{ steps.extract_version.outputs.version }}-x64
asset_content_type: application/octet-stream
- name: Upload Release MSI Asset
id: upload-release-msi-asset
if: matrix.platform == 'windows-latest'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: D:\a\ad4m\ad4m\target\release\bundle\msi\AD4M_${{ steps.extract_version.outputs.version }}_x64_en-US.msi
asset_name: AD4M_${{ steps.extract_version.outputs.version }}_x64_en-US.msi
asset_content_type: application/octet-stream
- name: Upload Release AD4M Host Windows Binary
id: upload-release-windows-ad4m-host-binary
if: matrix.platform == 'windows-latest'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: D:\a\ad4m\ad4m\host\dist\ad4m-windows-x64.exe
asset_name: ad4m-windows-${{ steps.extract_version.outputs.version }}-x64.exe
asset_content_type: application/octet-stream
- name: "Upload built AD4MIN"
uses: tauri-apps/tauri-action@v0.4.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "Ad4min v__VERSION__"
releaseBody: "See the assets to download this version and install."
projectPath: "./ui"