Skip to content

Commit

Permalink
chore(ci): short SHA
Browse files Browse the repository at this point in the history
  • Loading branch information
AMD-NICK committed Sep 8, 2024
1 parent 87ab209 commit 03b3d66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
tags: |
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') }}
type=ref,event=branch
type=sha,format=long
type=sha,format=short
type=raw,value=${{ github.ref_name }},enable=${{ startsWith(github.ref, 'refs/tags/') }}
- uses: docker/build-push-action@v6
Expand Down
3 changes: 2 additions & 1 deletion lua/express/router/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ local ROUTER_MT = setmetatable({}, {
__call = function(self, options)
local opts = options or {}

local router = { --- @class ExpressRouterBase
--- @class ExpressRouterBase
local router = {
params = {}, --- @type table
caseSensitive = opts.caseSensitive, --- @type boolean
-- mergeParams = opts.mergeParams, -- the reason of comment below in file
Expand Down

0 comments on commit 03b3d66

Please sign in to comment.