Release Opera Appimage #916
This file contains hidden or 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: Release Opera Appimage | |
| concurrency: | |
| group: build-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| schedule: | |
| - cron: "0 20 * * 0-6" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: build | |
| run: | | |
| sudo apt update && sudo apt install desktop-file-utils | |
| chmod a+x ./opera-snap.sh | |
| ./opera-snap.sh | |
| mkdir dist | |
| mv *AppImage* dist/ | |
| - name: Upload artifact | |
| uses: actions/[email protected] | |
| with: | |
| name: Opera-Web-Browser-x86_64.AppImage | |
| path: 'dist' | |
| release: | |
| needs: [build] | |
| permissions: write-all | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| name: Opera-Web-Browser-x86_64.AppImage | |
| # Snapshot Release | |
| - name: get date | |
| run: | | |
| SNAPSHOT_TAG="$(date --utc +'%Y%m%d-%H%M%S')" | |
| echo SNAPSHOT_TAG="${SNAPSHOT_TAG}" >> "${GITHUB_ENV}" | |
| continue-on-error: false | |
| - name: create snapshot | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: "Snapshot ${{ env.SNAPSHOT_TAG}}" | |
| tag_name: "${{ env.SNAPSHOT_TAG}}" | |
| prerelease: false | |
| draft: false | |
| generate_release_notes: false | |
| make_latest: false | |
| files: | | |
| *.AppImage* | |
| continue-on-error: false | |
| # Continuous releases | |
| - name: release | |
| uses: marvinpinto/action-automatic-releases@latest | |
| with: | |
| title: Continuous build | |
| automatic_release_tag: continuous | |
| prerelease: false | |
| draft: false | |
| files: | | |
| *.AppImage* | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} |