Skip to content

rename storage alias #299

rename storage alias

rename storage alias #299

name: publish executables
on:
push:
branches: [main]
tags: ["v*"]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: checkout backend repository
uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ^1.21
- uses: actions/setup-node@v2
with:
node-version: "18"
- name: setup web console repository
run: ./scripts/setup_web_console.sh
- name: cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: |
**/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
- name: build web console
run: ./scripts/build_web_console.sh
env:
TX_TOKEN: '${{ secrets.TRANSIFEX_TOKEN_MC_V2 }}'
- name: Cache go modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: build bundles
run: ./scripts/generate_executables.sh
- name: create build timestamp and sha file
run: |
cd builds
echo `date -u +'%Y%m%d%H%M%S'` > ./build_timestamp.txt
echo `date -u +'%Y-%m-%dT%H:%M:%S%:z'` >> ./build_timestamp.txt
sha256sum *.tar.gz > ./SHA256SUMS.txt
sha256sum *.zip >> ./SHA256SUMS.txt
- name: Update release notes and executables
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/') # executes only for new release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
files: |
builds/*.tar.gz
builds/*.zip
builds/build_timestamp.txt
builds/SHA256SUMS.txt
- name: Update executables from main branch changes
if: startsWith(github.ref, 'refs/heads/main') # executes only for changes in main
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GH_TOKEN }}"
automatic_release_tag: development
prerelease: true
title: "Development Build - Pre Release"
files: |
builds/*.tar.gz
builds/*.zip
builds/build_timestamp.txt
builds/SHA256SUMS.txt