-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial fixes for 0.8 hotfix * fixed the issue with the nil context during execution * fixing the unhandled error in the main.go * fixing the comments * adding beta publishing
- Loading branch information
Showing
32 changed files
with
970 additions
and
363 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
name: Publish Beta Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*_beta' | ||
|
||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "Version to release" | ||
required: true | ||
|
||
jobs: | ||
check-version-change: | ||
outputs: | ||
changed: ${{ steps.check-version.outputs.result }} | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Check if version has changed | ||
id: check-version | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
// Get the version from the workflow input | ||
let version = '${{ github.event.inputs.version }}'; | ||
if (!version) { | ||
fs = require('fs'); | ||
let v = ''; | ||
try { | ||
v = fs.readFileSync('./VERSION', 'utf8'); | ||
console.log(`Version found: ${v}`); | ||
} | ||
catch (err) { | ||
return false; | ||
} | ||
if (!v) { | ||
return false; | ||
} else { | ||
version = v; | ||
} | ||
} | ||
// Find a release for that version | ||
const release = await github.rest.repos.getReleaseByTag({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
tag: `v${version}-beta`, | ||
}).catch(() => null); | ||
// If the release exists, the version has not changed | ||
if (release) { | ||
console.log(`Version ${version} has an existing release`); | ||
console.log(release.data.html_url); | ||
core.summary.addLink(`Release v${version}`, release.data.html_url); | ||
await core.summary.write(); | ||
return "false"; | ||
} | ||
console.log(`Version ${version} does not have a release`); | ||
return true; | ||
release: | ||
needs: check-version-change | ||
if: ${{ needs.check-version-change.outputs.changed == 'true' }} | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
packages: read | ||
env: | ||
EXT_VERSION: "" # will be set in the workflow | ||
outputs: | ||
version: ${{ env.EXT_VERSION }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Parse version from package.json | ||
run: | | ||
echo "EXT_VERSION=$(cat ./VERSION)" >> "$GITHUB_ENV" | ||
- name: Create release and upload release asset | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const fs = require("fs"); | ||
const release = await github.rest.repos.createRelease({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
tag_name: "v${{ env.EXT_VERSION }}-beta", | ||
name: "v${{ env.EXT_VERSION }}", | ||
draft: false, | ||
prerelease: true | ||
}); | ||
core.summary.addLink(`Release v${{ env.EXT_VERSION }}`, release.data.html_url); | ||
await core.summary.write(); | ||
releases-matrix: | ||
needs: release | ||
name: Release Go Binary | ||
runs-on: ubuntu-latest | ||
env: | ||
EXT_VERSION: ${{ needs.release.outputs.version }} | ||
AmplitudeApiKey: ${{ secrets.AMPLITUDE_API_KEY }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64 | ||
goos: [linux, windows, darwin] | ||
goarch: ["386", amd64, arm64] | ||
exclude: | ||
- goarch: "386" | ||
goos: darwin | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Add Inbuilt Variables | ||
run: | | ||
sed -i "s/var AmplitudeApiKey = \"\"/var AmplitudeApiKey = \"${{ env.AmplitudeApiKey }}\"/g" ./src/constants/amplitude.go | ||
- uses: wangyoucao577/go-release-action@v1 | ||
timeout-minutes: 10 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
goos: ${{ matrix.goos }} | ||
goarch: ${{ matrix.goarch }} | ||
goversion: "https://dl.google.com/go/go1.21.1.linux-amd64.tar.gz" | ||
project_path: "./src" | ||
binary_name: "prldevops" | ||
release_name: "v${{ env.EXT_VERSION }}" | ||
|
||
build-containers: | ||
needs: release | ||
env: | ||
EXT_VERSION: ${{ needs.release.outputs.version }} | ||
AmplitudeApiKey: ${{ secrets.AMPLITUDE_API_KEY }} | ||
name: Build Docker Images | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Add Inbuilt Variables | ||
run: | | ||
sed -i "s/var AmplitudeApiKey = \"\"/var AmplitudeApiKey = \"${{ env.AmplitudeApiKey }}\"/g" ./src/constants/amplitude.go | ||
- uses: docker/setup-buildx-action@v1 | ||
- uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: | | ||
${{ secrets.DOCKER_USERNAME }}/prl-devops-service:latest | ||
${{ secrets.DOCKER_USERNAME }}/prl-devops-service:${{ env.EXT_VERSION }} | ||
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
package data | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"path/filepath" | ||
"sort" | ||
"strings" | ||
"time" | ||
|
||
"github.com/Parallels/prl-devops-service/basecontext" | ||
"github.com/cjlapao/common-go/helper" | ||
) | ||
|
||
func (j *JsonDatabase) Backup(ctx basecontext.ApiContext) error { | ||
backupFiles, err := findBackupFiles(j.filename) | ||
if err != nil { | ||
ctx.LogErrorf("[Database] Error finding backup files: %v", err) | ||
return err | ||
} | ||
|
||
if len(backupFiles) >= j.Config.NumberOfBackupFiles { | ||
// Delete the oldest backup file | ||
oldestFile := backupFiles[0] | ||
err := os.Remove(oldestFile) | ||
if err != nil { | ||
ctx.LogErrorf("[Database] Error deleting backup file: %v", err) | ||
return err | ||
} | ||
} | ||
|
||
// Create a new backup file with timestamp | ||
timestamp := time.Now().Format("20060102150405") | ||
newBackupFile := fmt.Sprintf("%s.save.bak.%s", j.filename, timestamp) | ||
err = helper.CopyFile(j.filename, newBackupFile) | ||
if err != nil { | ||
ctx.LogErrorf("[Database] Error creating new backup file: %v", err) | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func findBackupFiles(filename string) ([]string, error) { | ||
dir := filepath.Dir(filename) | ||
base := filepath.Base(filename) | ||
pattern := fmt.Sprintf("%s.save.bak.*", base) | ||
matches, err := filepath.Glob(filepath.Join(dir, pattern)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
// Sort the backup files by timestamp | ||
sort.Slice(matches, func(i, j int) bool { | ||
return extractTimestamp(matches[i]) < extractTimestamp(matches[j]) | ||
}) | ||
|
||
return matches, nil | ||
} | ||
|
||
func extractTimestamp(filename string) string { | ||
parts := strings.Split(filename, ".") | ||
return parts[len(parts)-1] | ||
} |
Oops, something went wrong.