Build ONLYOFFICE_Docs-8.3.0-67 #11
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: Build and publish SNAP package | |
run-name: Build ONLYOFFICE_Docs-${{ github.event.inputs.version }}-${{ github.event.inputs.build }} | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
type: string | |
description: 'Version' | |
required: true | |
build: | |
description: 'Build number' | |
type: string | |
required: true | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Replace Version and Build Number | |
id: repl | |
run: | | |
VERSION=${{ github.event.inputs.version }} | |
BUILD_NUMBER=${{ github.event.inputs.build }} | |
#replace version | |
sed -i -r "/version:/s/([0-9]+).([0-9]+).([0-9]+)/${VERSION}/" ./snap/snapcraft.yaml | |
#replace link to archive to test | |
#x64 | |
sed -i -e '/amd64:/s|https://download.onlyoffice.com/install/document|https://s3.eu-west-1.amazonaws.com/repo-doc-onlyoffice-com/|' ./snap/snapcraft.yaml | |
sed -i -e '/amd64:/s|server/linux/|server/linux/snap/|' ./snap/snapcraft.yaml | |
sed -i -e "/amd64:/s|_x86_64|-${BUILD_NUMBER}-x86_64|" ./snap/snapcraft.yaml | |
#arm | |
sed -i -e '/arm64:/s|https://download.onlyoffice.com/install/document|https://s3.eu-west-1.amazonaws.com/repo-doc-onlyoffice-com/|' ./snap/snapcraft.yaml | |
sed -i -e '/arm64:/s|server/linux/|server/linux/snap/|' ./snap/snapcraft.yaml | |
sed -i -e "/arm64:/s|_aarch64|-${BUILD_NUMBER}-aarch64|" ./snap/snapcraft.yaml | |
#test | |
df -h | |
free | |
- name: Build snap | |
uses: snapcore/action-build@v1 | |
id: build | |
- name: Publish AMD64 snap | |
uses: snapcore/action-publish@v1 | |
env: | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }} | |
with: | |
snap: onlyoffice-ds_${{ github.event.inputs.version }}_amd64.snap | |
release: beta | |
- name: Publish ARM64 snap | |
uses: snapcore/action-publish@v1 | |
env: | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }} | |
with: | |
snap: onlyoffice-ds_${{ github.event.inputs.version }}_arm64.snap | |
release: beta | |
- name: Upload AMD64 Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ONLYOFFICE_Docs-${{ github.event.inputs.version }}-${{ github.event.inputs.build }}-amd64 | |
path: onlyoffice-ds_${{ github.event.inputs.version }}_amd64.snap | |
retention-days: 14 | |
- name: Upload ARM64 Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ONLYOFFICE_Docs-${{ github.event.inputs.version }}-${{ github.event.inputs.build }}-arm64 | |
path: onlyoffice-ds_${{ github.event.inputs.version }}_arm64.snap | |
retention-days: 14 | |