Skip to content

Commit

Permalink
remove 'v' from release image version
Browse files Browse the repository at this point in the history
  • Loading branch information
fridayy committed Jan 24, 2023
1 parent dc3ea34 commit 6c0448a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set Release Tag Env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
run: |
echo "RELEASE_VERSION=$(echo $GITHUB_REF | sed -e 's/refs\/tags\/v//g')" >> $GITHUB_ENV
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
Expand Down
3 changes: 1 addition & 2 deletions apps/aksnth/src/aksnth_event_poller.erl
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ init(_) ->

handle_continue(start, #state{poll_interval = PollInterval} = State) ->
aksnth_metadata:init(),
logger:info("Starting event poller with configured poll interval '~p ms'", [PollInterval]),
?LOG_INFO(#{event => poller_initialize, interval => PollInterval}),
?LOG_INFO(#{event => poller_initialize, message => "Starting metadata event poller with configured interval", interval => PollInterval}),
InstanceName = aksnth_metadata:instance_name(),
poll(PollInterval),
?LOG_INFO(#{event => poller_initialized, vm_name => InstanceName}),
Expand Down

0 comments on commit 6c0448a

Please sign in to comment.