Skip to content

Commit

Permalink
Build on/for Ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
lablans committed Jun 2, 2023
1 parent 95f1a43 commit ed536db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ on:
jobs:
pre-check:
name: Security, License Check
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1

# Create the Github Release™ so the packages have something to be uploaded to
create-release:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
has-releases: ${{ steps.create-release.outputs.has-releases }}
env:
Expand Down Expand Up @@ -93,13 +93,13 @@ jobs:
matrix:
# For these target platforms
include:
- os: ubuntu-20.04
- os: ubuntu-22.04
dist-args: --artifacts=global
install-dist: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.0.7/cargo-dist-installer.sh | sh
- os: macos-11
dist-args: --artifacts=local --target=aarch64-apple-darwin --target=x86_64-apple-darwin
install-dist: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.0.7/cargo-dist-installer.sh | sh
- os: ubuntu-20.04
- os: ubuntu-22.04
dist-args: --artifacts=local --target=x86_64-unknown-linux-gnu
install-dist: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.0.7/cargo-dist-installer.sh | sh
- os: windows-2019
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
# Only run after all the other tasks, but it's ok if upload-artifacts was skipped
needs: [create-release, upload-artifacts]
if: ${{ always() && needs.create-release.result == 'success' && (needs.upload-artifacts.result == 'skipped' || needs.upload-artifacts.result == 'success') }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "beamctl"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
repository = "https://github.com/samply/beamctl"

Expand Down

0 comments on commit ed536db

Please sign in to comment.