Also load portals from XDG_DATA_DIRS #408
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: [push, pull_request] | |
jobs: | |
build-container: | |
name: Container | |
uses: ./.github/workflows/container.yml | |
permissions: | |
packages: write | |
build-and-test: | |
name: Build and Test | |
uses: ./.github/workflows/build-and-test.yml | |
needs: build-container | |
with: | |
image: ${{ needs.build-container.outputs.image }} | |
image_options: ${{ needs.build-container.outputs.image_options }} | |
pages: | |
name: Documentation & Website | |
uses: ./.github/workflows/pages.yml | |
needs: build-container | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
with: | |
image: ${{ needs.build-container.outputs.image }} | |
image_options: ${{ needs.build-container.outputs.image_options }} |