Testing depth 0 2nd try #76
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: Full build and publish with versioning | |
on: | |
push: | |
tags: | |
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 | |
permissions: | |
contents: write | |
jobs: | |
build-linux-ubuntu: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 # Fetch full history for branches | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.13 | |
- name: Get tag name | |
run: | | |
VERSION=${GITHUB_REF/refs\/tags\//} | |
NEW_VERSION="${VERSION}" | |
node -p "let pkg=require('./package.json'); pkg.version='$NEW_VERSION'; require('fs').writeFileSync('package.json', JSON.stringify(pkg, null, 2));" | |
- name: Print package.json | |
run: cat package.json | |
- name: Install dependencies | |
run: npm install | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21 | |
- name: Build go | |
run: | | |
cd go_server | |
go build main.go | |
cd .. | |
- name: Prebuild libmongocrypt | |
run: bash ./utilScripts/libmongocrypt_prebuild.sh | |
- name: Build for Linux | |
run: npm run build:linux | |
- name: Get tag name | |
id: get-tag | |
run: | | |
VERSION=${GITHUB_REF/refs\/tags\//} | |
echo "::set-output name=VERSION::${VERSION#v}" | |
- name: Rename Linux | |
run: mv ./build/dist/MEDomicsLab-${{ env.VERSION }}-linux.deb ./build/dist/MEDomicsLab-${{ env.VERSION }}-ubuntu.deb | |
env: | |
VERSION: ${{ steps.get-tag.outputs.VERSION }} | |
- name: Archive Linux | |
uses: actions/upload-artifact@v3 | |
with: | |
name: linux-built-ubuntu | |
path: ./build/dist/MEDomicsLab-${{ env.VERSION }}-ubuntu.deb | |
env: | |
VERSION: ${{ steps.get-tag.outputs.VERSION }} | |
# Publish to GitHub | |
publish: | |
needs: [build-linux-ubuntu] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download Linux Ubuntu | |
uses: actions/download-artifact@v3 | |
with: | |
name: linux-built-ubuntu | |
- name: Install zip | |
run: sudo apt-get install zip | |
- name: Move files out of pythonEnv - to root | |
run: | | |
mv ./pythonEnv/requirements.txt ./requirements.txt | |
mv ./pythonEnv/requirements_mac.txt ./requirements_mac.txt | |
mv ./pythonEnv/conda_env_osx64.yml ./conda_env_osx64.yml | |
mv ./pythonEnv/create_conda_env_win.bat ./create_conda_env_win.bat | |
mv ./pythonEnv/create_conda_env_linux.sh ./create_conda_env_linux.sh | |
mv ./pythonEnv/create_conda_env_mac_yml.sh ./create_conda_env_mac_yml.sh | |
mv ./pythonEnv/create_conda_env_mac.sh ./create_conda_env_mac.sh | |
ls -R | |
- name: zip Linux | |
run: zip -r MEDomicsLab-PythonEnv-linux.zip ./requirements.txt ./create_conda_env_linux.sh | |
- name: Get tag name | |
id: get-tag | |
run: | | |
VERSION=${GITHUB_REF/refs\/tags\//} | |
echo "::set-output name=VERSION::${VERSION#v}" | |
- name: Publish to GitHub | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
./MEDomicsLab-${{ env.VERSION }}-ubuntu.deb | |
name: MEDomicsLab-${{ env.VERSION }} | |
body: | | |
MEDomicsLab-${{ env.VERSION }} | |
This is a full release of MEDomicsLab. This release includes the MEDomicsLab application and the Python environment. | |
Refer to the [Documentation](https://medomics-udes.gitbook.io/medomicslab-docs/) | |
${{ github.ref }} | |
draft: true | |
prerelease: false | |
token: ${{ secrets.GITHUB_TOKEN }} | |
env: | |
VERSION: ${{ steps.get-tag.outputs.VERSION }} |