doc: add linux screenshot (#972) #741
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the master branch | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-linux: | |
name: Linux | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Build it | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
npm ci | |
npm run lint | |
npm run dist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: linux-binaries | |
path: | | |
dist/jitsi-meet-amd64.deb | |
dist/jitsi-meet-x86_64.AppImage | |
dist/jitsi-meet-arm64.deb | |
dist/jitsi-meet-arm64.AppImage | |
dist/latest-linux.yml | |
dist/latest-linux-arm64.yml | |
build-mac: | |
name: macOS | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Prepare for app signing and notarization | |
env: | |
MAC_CERT_PASSWORD: ${{ secrets.mac_cert_password }} | |
if: ${{ env.MAC_CERT_PASSWORD }} | |
run: | | |
echo "CSC_LINK=${{ secrets.mac_cert }}" >> $GITHUB_ENV | |
echo "CSC_KEY_PASSWORD=${{ secrets.mac_cert_password }}" >> $GITHUB_ENV | |
echo "CSC_FOR_PULL_REQUEST=true" >> $GITHUB_ENV | |
echo "APPLE_ID=${{ secrets.apple_id }}" >> $GITHUB_ENV | |
echo "APPLE_ID_PASSWORD=${{ secrets.apple_id_password }}" >> $GITHUB_ENV | |
echo "TEAM_ID=${{ secrets.team_id }}" >> $GITHUB_ENV | |
- name: Build it | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
npm ci | |
npm run dist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: mac-binaries | |
path: | | |
dist/jitsi-meet.dmg | |
dist/jitsi-meet.zip | |
dist/latest-mac.yml | |
build-windows: | |
name: Windows | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Build it | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
npm ci | |
npm run dist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: windows-binaries | |
path: | | |
dist/jitsi-meet.exe | |
dist/latest.yml |