Skip to content

Commit

Permalink
Disable job upload-assets which is not yet ready
Browse files Browse the repository at this point in the history
  • Loading branch information
aschaeffer committed May 12, 2023
1 parent b036fc5 commit 5ae6da8
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 64 deletions.
126 changes: 63 additions & 63 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,69 +23,69 @@ jobs:
with:
changelog: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
upload-assets:
strategy:
matrix:
include:
# Tier 1
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
# Tier 1
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
# Tier 2
- target: armv7-unknown-linux-gnueabihf
os: ubuntu-latest
# Tier 1
- target: x86_64-apple-darwin
os: macos-latest
# Tier 2
- target: aarch64-apple-darwin
os: macos-latest
# Universal macOS binary is supported as universal-apple-darwin.
- target: universal-apple-darwin
os: macos-latest
# Tier 1
- target: x86_64-pc-windows-msvc
os: windows-latest
# Tier 2
# - target: aarch64-pc-windows-msvc
# os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: VCS Checkout
uses: actions/checkout@v3
# Required by arm targets
- name: Install packages
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: pkg-config openssl libssl-dev
version: 1.1
if: matrix.os == 'ubuntu-latest'
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Yarn
uses: borales/actions-yarn@v4
with:
cmd: --cwd plugins/graphql-client/web install
- name: Install Yarn
uses: borales/actions-yarn@v4
with:
cmd: --cwd plugins/graphql-schema-visualization/web install
- name: Upload Rust Binary
uses: taiki-e/upload-rust-binary-action@v1
with:
bin: libinexor_rgf_plugin_standalone
target: ${{ matrix.target }}
include: LICENSE.md,README.md,CHANGELOG.md,config,plugins
tar: unix
zip: windows
leading_dir: true
token: ${{ secrets.GITHUB_TOKEN }}
env:
VERGEN_IDEMPOTENT: true
# upload-assets:
# strategy:
# matrix:
# include:
# # Tier 1
# - target: x86_64-unknown-linux-gnu
# os: ubuntu-latest
# # Tier 1
# - target: aarch64-unknown-linux-gnu
# os: ubuntu-latest
# # Tier 2
# - target: armv7-unknown-linux-gnueabihf
# os: ubuntu-latest
# # Tier 1
# - target: x86_64-apple-darwin
# os: macos-latest
# # Tier 2
# - target: aarch64-apple-darwin
# os: macos-latest
# # Universal macOS binary is supported as universal-apple-darwin.
# - target: universal-apple-darwin
# os: macos-latest
# # Tier 1
# - target: x86_64-pc-windows-msvc
# os: windows-latest
# # Tier 2
# # - target: aarch64-pc-windows-msvc
# # os: windows-latest
# runs-on: ${{ matrix.os }}
# steps:
# - name: VCS Checkout
# uses: actions/checkout@v3
# # Required by arm targets
# - name: Install packages
# uses: awalsh128/cache-apt-pkgs-action@latest
# with:
# packages: pkg-config openssl libssl-dev
# version: 1.1
# if: matrix.os == 'ubuntu-latest'
# - name: Setup Node.js 18
# uses: actions/setup-node@v3
# with:
# node-version: 18
# - name: Install Yarn
# uses: borales/actions-yarn@v4
# with:
# cmd: --cwd plugins/graphql-client/web install
# - name: Install Yarn
# uses: borales/actions-yarn@v4
# with:
# cmd: --cwd plugins/graphql-schema-visualization/web install
# - name: Upload Rust Binary
# uses: taiki-e/upload-rust-binary-action@v1
# with:
# bin: libinexor_rgf_plugin_standalone
# target: ${{ matrix.target }}
# include: LICENSE.md,README.md,CHANGELOG.md,config,plugins
# tar: unix
# zip: windows
# leading_dir: true
# token: ${{ secrets.GITHUB_TOKEN }}
# env:
# VERGEN_IDEMPOTENT: true
crates-io:
name: Publish on crates.io
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [0.9.1-19] - 2023-05-09
## [0.9.1-20] - 2023-05-09

### Added

Expand Down

0 comments on commit 5ae6da8

Please sign in to comment.