Skip to content

redme

redme #18

Workflow file for this run

name: Release
on:
push:
branches: [main]
tags: ["v*"]
permissions:
contents: write
env:
CARGO_TERM_COLOR: always
BINARY_NAME: oxide
jobs:
build:
name: Build (${{ matrix.target }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
artifact: oxide-linux-x86_64
- os: macos-latest
target: aarch64-apple-darwin
artifact: oxide-macos-aarch64
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact: oxide-windows-x86_64.exe
steps:
- uses: actions/checkout@v4
- name: Install system dependencies (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y \
libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev \
libxkbcommon-dev libssl-dev libgtk-3-dev libatk1.0-dev \
libglib2.0-dev libpango1.0-dev libgdk-pixbuf-2.0-dev
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
- name: Build release binary
run: cargo build --release -p oxide-browser --target ${{ matrix.target }}
- name: Rename binary (Unix)
if: runner.os != 'Windows'
run: |
cp target/${{ matrix.target }}/release/${{ env.BINARY_NAME }} ${{ matrix.artifact }}
- name: Rename binary (Windows)
if: runner.os == 'Windows'
run: |
copy target\${{ matrix.target }}\release\${{ env.BINARY_NAME }}.exe ${{ matrix.artifact }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: ${{ matrix.artifact }}
retention-days: 1
release:
name: Create Release
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
merge-multiple: true
- name: List artifacts
run: ls -lhR artifacts/
- name: Determine release info
id: info
run: |
if [[ "${{ github.ref_type }}" == "tag" ]]; then
echo "tag=${{ github.ref_name }}" >> "$GITHUB_OUTPUT"
echo "name=${{ github.ref_name }}" >> "$GITHUB_OUTPUT"
echo "prerelease=false" >> "$GITHUB_OUTPUT"
else
echo "tag=latest" >> "$GITHUB_OUTPUT"
echo "name=Latest Build ($(date -u +%Y-%m-%d))" >> "$GITHUB_OUTPUT"
echo "prerelease=true" >> "$GITHUB_OUTPUT"
fi
- name: Delete existing latest release
if: steps.info.outputs.tag == 'latest'
env:
GH_TOKEN: ${{ github.token }}
run: gh release delete latest --yes --cleanup-tag 2>/dev/null || true
- name: Create release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.info.outputs.tag }}
name: ${{ steps.info.outputs.name }}
prerelease: ${{ steps.info.outputs.prerelease }}
generate_release_notes: true
files: artifacts/*