Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build-libra.yml #103

Merged
merged 9 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-libra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
docker:
env:
IMAGE_TAG: "1.8"
IMAGE_TAG: "1.8.1"
runs-on: ubuntu-latest
steps:
- name: Get branch names
Expand Down Expand Up @@ -70,4 +70,4 @@ jobs:
push: true
file: "./data_management/DluWatcher"
tags:
"kingstonduo/dlu-watcher:${{steps.branch-names.outputs.current_branch}}"
"kingstonduo/dlu-watcher:${{steps.branch-names.outputs.current_branch}}"
19 changes: 18 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
# Changelog

## Release 1.8 [unreleased]

## Release 1.8.1 [Released 11/8/2024]
Brief summary of what's in this release:
Fix to the dlu-watcher script to generate a new UUID for each file, rather than one at start up. This caused issues with moving files

### Breaking changes

Breaking changes include any database updates needed, if we need to edit any files on system (like .env or certs, etc). Things that are outside of the code itself that need changed for the system to work.


### Non-breaking changes

Just a place to keep track of things that have changed in the code that we may want to pay special attention to when smoke testing, etc.


---

## Release 1.8 [released 10/16/2024]
Brief summary of what's in this release:

- Added logic to change ownership of moved files off of root user
Expand Down
2 changes: 1 addition & 1 deletion data_management/rebuild.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
python3 setup.py install --user
docker build -t kingstonduo/data-management:1.8 .
docker build -t kingstonduo/data-management:1.8.1 .
2 changes: 1 addition & 1 deletion data_management/run.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
docker run --log-driver=none -a stdin -a stdout -a stderr --network dataLake --env-file .env kingstonduo/data-management:1.8 python ./main.py $1 $2 $3 $4
docker run --log-driver=none -a stdin -a stdout -a stderr --network dataLake --env-file .env kingstonduo/data-management:1.8.1 python ./main.py $1 $2 $3 $4