Releasing refs/tags/v7.3.3.60+8 #11
Workflow file for this run
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: Release | |
run-name: Releasing ${{ github.ref }} | |
on: | |
push: | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
permissions: | |
contents: write | |
jobs: | |
Explore-GitHub-Actions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Mount bazel cache | |
uses: actions/cache@v3 | |
with: | |
path: "/home/runner/.cache/bazel" | |
key: bazel | |
- name: bazel test | |
run: | | |
bazel test ... | |
- name: bazel build | |
run: | | |
bazel build --compilation_mode opt :oofork :oofork-sha512sum | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
./bazel-bin/onlyoffice-editor.zip | |
./bazel-bin/onlyoffice-editor.zip.sha512 |