From 0c7516dc794451c2c85b54a087b1e9ad6812e31e Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 17:29:09 -0800 Subject: [PATCH 01/15] time to test the new action --- .github/workflows/create-archives.yml | 27 +++++++++ cc/computer/0/buildimgs.lua | 85 +++++++++++++++++++++++++++ cc/computer/0/startup.lua | 2 + cc/computer/0/yc | 1 + 4 files changed, 115 insertions(+) create mode 100644 .github/workflows/create-archives.yml create mode 100644 cc/computer/0/buildimgs.lua create mode 100644 cc/computer/0/startup.lua create mode 120000 cc/computer/0/yc diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml new file mode 100644 index 0000000..d52be77 --- /dev/null +++ b/.github/workflows/create-archives.yml @@ -0,0 +1,27 @@ +name: "build archives" + +on: + workflow_dispatch: + push: + branches: [main] + paths: + - "src/**.lua" + - "cc/**" + +jobs: + build-archives: + runs-on: "ubuntu-latest" + steps: + - name: "checkout" + uses: "actions/checkout@v3" + - name: "run cc" + uses: "walksanatora/craftos-action@v1" + with: + root: "cc" + timeout: "60" + - name: "upload-images" + uses: "actions/upload-artifact@v3" + with: + name: "archives" + path: "cc/computer/0/output/*" + diff --git a/cc/computer/0/buildimgs.lua b/cc/computer/0/buildimgs.lua new file mode 100644 index 0000000..2e8f20d --- /dev/null +++ b/cc/computer/0/buildimgs.lua @@ -0,0 +1,85 @@ +local loaded_ld, ld = pcall(require, "LibDeflate") +--options +local opts = {...} +print("[build] #opts "..#opts) +local output = table.remove(opts,1) +print("[build] output_base "..output) +local extract_path = table.remove(opts,1) +print("[build] extraction path "..extract_path) +local files = opts + + +--to turn a folder into a table +local function gen_disk(ph) + sleep() + local path = ph or "" + local pth = fs.getName(path) + local tree = {} + for _,v in pairs(fs.list(path)) do + if fs.isDir(path.."/"..v) then + if verbosity > 1 then print("[build] heading down to "..path.."/"..v) end + tree[v] = gen_disk(path.."/"..v) + else + if verbosity > 1 then print("[build] adding "..path.."/"..v) end + local chandle = fs.open(path.."/"..v,'rb') + tree[v] = chandle.readAll() + chandle.close() + end + end + return tree +end +--we require LibDeflate for this (since we make compressed images) +if not loaded_ld then error("Unnable to load LibDeflate"..ld) end +--make sure the minimised and stripped LibDeflate is also here +if not fs.exists(fs.combine(fs.getDir(shell.getRunningProgram()),"LD.lua")) then error("Unnable to locate minified LibDeflate") end +--make sure all paths are valid +print("[build] validating files") +for _,v in ipairs(files) do + local v = shell.resolve(v) + if not fs.exists(v) then error("File/Folder does not exist: "..v) end +end +--get the base name for the outputs +local output_base_name = shell.resolve(output) +local final = {} +--add files to the table +print("[build] starting tree gen") +for _,v in ipairs(files) do + local sr = shell.resolve(v) + print("[build] adding: "..v) + if fs.isDir(sr) then + final[fs.getName(v)] = gen_disk(sr) + else + local hand = fs.open(sr,'rb') + local con = hand.readAll() + final[fs.getName(v)] = con + hand.close() + end +end +--uncompressed serialize (and write) +print("[build] serialising") +local ser = textutils.serialise(final) +print("[build] writing VFS") +local handle = fs.open(output_base_name..".vfs",'wb') + handle.write(ser) + handle.close() +print("[build] compressing") +--compress it with Gzip +local compressed = ld:CompressGzip(ser) +print("[build] writing compressed") +local handle = fs.open(output_base_name..".vgz",'wb') + handle.write(compressed) + handle.close() +--now make a Self-Extracting-Archive +print("[build] creating Self Extracting Archive") +local output_file = fs.open(output_base_name..".lua",'wb') +output_file.write('local I,c,o,f,C,t,s,D = table.unpack({\nloadstring([=[') +local ldh = fs.open(fs.combine(fs.getDir(shell.getRunningProgram()),"LD.lua"),'rb') +local ldc = ldh.readAll() +output_file.write(ldc) +ldh.close() +output_file.write(']=])()\n,(function()local u,g = fs.open(shell.getRunningProgram(),"rb")g=u.readAll()u.close()return g:match("%[===%[(.+)%]===%]") end)(),shell.resolve(""),fs.open,fs.combine,type,shell.setDir,shell.dir()})\nfunction u(p,z)fs.makeDir(C(o,p))s(C(o,p))for k, v in pairs(z) do if t(v) == "table" then u(p.."/"..k,v)elseif t(v) == "string" then local h = f(fs.combine(o,C(p,k)),"wb")h.write(v)h.close()end end end u("') +output_file.write(extract_path..'",textutils.unserialise(I:d(c)))s(o)') +output_file.write('\n--[===[') +output_file.write(compressed) +output_file.write(']===]') +print("[build] done") \ No newline at end of file diff --git a/cc/computer/0/startup.lua b/cc/computer/0/startup.lua new file mode 100644 index 0000000..c8ab2bb --- /dev/null +++ b/cc/computer/0/startup.lua @@ -0,0 +1,2 @@ +shell.run("buildimgs output/yc yc/lib yc/youcube.lua") +os.shutdown() \ No newline at end of file diff --git a/cc/computer/0/yc b/cc/computer/0/yc new file mode 120000 index 0000000..a1d005e --- /dev/null +++ b/cc/computer/0/yc @@ -0,0 +1 @@ +../../../src/ \ No newline at end of file From abf4d56f808ea79e7b9a90c7d9171e31322fe858 Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 17:45:14 -0800 Subject: [PATCH 02/15] fix CC possibly --- .github/workflows/create-archives.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml index d52be77..a63fcd2 100644 --- a/.github/workflows/create-archives.yml +++ b/.github/workflows/create-archives.yml @@ -15,7 +15,7 @@ jobs: - name: "checkout" uses: "actions/checkout@v3" - name: "run cc" - uses: "walksanatora/craftos-action@v1" + uses: "walksanatora/craftos-action@v1.0.2" with: root: "cc" timeout: "60" From 95260e3cd657b3a56458b71bb34a3d5c371e47ed Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 17:46:35 -0800 Subject: [PATCH 03/15] re-run --- cc/computer/0/rerun.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 cc/computer/0/rerun.txt diff --git a/cc/computer/0/rerun.txt b/cc/computer/0/rerun.txt new file mode 100644 index 0000000..25d6004 --- /dev/null +++ b/cc/computer/0/rerun.txt @@ -0,0 +1 @@ +changeme to run-run img deploy \ No newline at end of file From 11509add94ae0e6741ed5206191d0e0b9bb36e5b Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 18:02:33 -0800 Subject: [PATCH 04/15] update create-archives.yml --- .github/workflows/create-archives.yml | 2 +- cc/computer/0/rerun.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml index a63fcd2..1799cb6 100644 --- a/.github/workflows/create-archives.yml +++ b/.github/workflows/create-archives.yml @@ -15,7 +15,7 @@ jobs: - name: "checkout" uses: "actions/checkout@v3" - name: "run cc" - uses: "walksanatora/craftos-action@v1.0.2" + uses: "walksanatora/craftos-action@v1.0.3" with: root: "cc" timeout: "60" diff --git a/cc/computer/0/rerun.txt b/cc/computer/0/rerun.txt index 25d6004..b7823b4 100644 --- a/cc/computer/0/rerun.txt +++ b/cc/computer/0/rerun.txt @@ -1 +1,2 @@ -changeme to run-run img deploy \ No newline at end of file +changeme to run-run img deploy +rerun counter 2 \ No newline at end of file From 0f1c03a145b03d519b0ca4466c8fa6d937247d46 Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 18:31:51 -0800 Subject: [PATCH 05/15] rerun again --- .github/workflows/create-archives.yml | 2 +- cc/computer/0/rerun.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml index 1799cb6..693abd0 100644 --- a/.github/workflows/create-archives.yml +++ b/.github/workflows/create-archives.yml @@ -15,7 +15,7 @@ jobs: - name: "checkout" uses: "actions/checkout@v3" - name: "run cc" - uses: "walksanatora/craftos-action@v1.0.3" + uses: "walksanatora/craftos-action@v1.0.4" with: root: "cc" timeout: "60" diff --git a/cc/computer/0/rerun.txt b/cc/computer/0/rerun.txt index b7823b4..b3e3c32 100644 --- a/cc/computer/0/rerun.txt +++ b/cc/computer/0/rerun.txt @@ -1,2 +1,2 @@ changeme to run-run img deploy -rerun counter 2 \ No newline at end of file +rerun counter 3 \ No newline at end of file From 8a83518d68569684b2fa2778f28d140c264abd4d Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 18:37:05 -0800 Subject: [PATCH 06/15] forgot the minified LibDeflate --- cc/computer/0/LD.lua | 1 + 1 file changed, 1 insertion(+) create mode 100644 cc/computer/0/LD.lua diff --git a/cc/computer/0/LD.lua b/cc/computer/0/LD.lua new file mode 100644 index 0000000..fd9389e --- /dev/null +++ b/cc/computer/0/LD.lua @@ -0,0 +1 @@ +local a,assert,error,pairs,b,c,d,e,f,g,h,tostring,type,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,C,D={},assert,error,pairs,string.byte,string.char,string.find,string.gsub,string.sub,table.concat,table.sort,tostring,type,{},{},{},{},{},{},{},{},{},{3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258},{0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0},{[0]=1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577},{[0]=0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13},{16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15},nil,nil,nil,nil,nil,nil,nil;for E=0,255 do j[E]=c(E)end;do local F=1;for E=0,32 do i[E]=F;F=F*2 end end;for E=1,9 do k[E]={}for G=0,i[E+1]-1 do local H=0;local I=G;for J=1,E do H=H-H%2+((H%2==1 or I%2==1)and 1 or 0)I=(I-I%2)/2;H=H*2 end;k[E][G]=(H-H%2)/2 end end;local K,L,M,J,N=bit.band,bit.bnot,bit.bxor,bit.blshift,bit.blogic_rshift;local O=0xEDB88320;local function P(Q)local R={}local S=setmetatable({},R)function R:__index(T)local U=Q(T)S[T]=U;return U end;return S end;local V=P(function(E)local W=E;for J=1,8 do local X=K(W,1)W=N(W,1)if X==1 then W=M(W,O)end end;return W end)local function Y(Z,W)W=L(W or 0)local _=N(W,8)local a0=V[M(W%256,Z)]return L(M(_,a0))end;local function a1(a2,W)W=W or 0;for E=1,#a2 do W=Y(a2:byte(E),W)end;return W end;function a:C(a2,W)if type(a2)=='string'then return a1(a2,W)else return Y(a2,W)end end;local a3={[0]={false,nil,0,0,0},[1]={false,nil,4,8,4},[2]={false,nil,5,18,8},[3]={false,nil,6,32,32},[4]={true,4,4,16,16},[5]={true,8,16,32,32},[6]={true,8,16,128,128},[7]={true,8,32,128,256},[8]={true,32,128,258,1024},[9]={true,32,258,258,4096}}local function a4(a5)local a6=a5;local a7=#a5;local a8=1;local a9=0;local aa=0;local function ab(ac)local ad=i[ac]local ae;if ac<=a9 then ae=aa%ad;aa=(aa-ae)/ad;a9=a9-ac else local af=i[a9]local ag,ah,ai,aj=b(a6,a8,a8+3)aa=aa+((ag or 0)+(ah or 0)*256+(ai or 0)*65536+(aj or 0)*16777216)*af;a8=a8+4;a9=a9+32-ac;ae=aa%ad;aa=(aa-ae)/ad end;return ae end;local function ak(al,am,an)assert(a9%8==0)local ao=a9/80 then if a9<15 and a6 then local af=i[a9]local ag,ah,ai,aj=b(a6,a8,a8+3)aa=aa+((ag or 0)+(ah or 0)*256+(ai or 0)*65536+(aj or 0)*16777216)*af;a8=a8+4;a9=a9+32 end;local ad=i[as]a9=a9-as;ae=aa%ad;aa=(aa-ae)/ad;ae=k[as][ae]av=aq[as]if ae0 and ac285 then return-10 elseif aI<256 then an=an+1;am[an]=j[aI]elseif aI>256 then aI=aI-256;local ac=r[aI]ac=aI>=8 and ac+ab(s[aI])or ac;aI=ap(aR,aS,aT)if aI<0 or aI>29 then return-10 end;local aY=t[aI]aY=aY>4 and aY+ab(u[aI])or aY;local aZ=an-aY+1;if aZ=-257 then for J=1,ac do an=an+1;am[an]=am[aZ]aZ=aZ+1 end else aZ=aW+aZ;for J=1,ac do an=an+1;local X=aV[aZ]am[an]=j[X]aZ=aZ+1 end end end;if ax()<0 then return 2 end;if an>=65536 then aU[#aU+1]=g(am,"",1,32768)for E=32769,an do am[E-32768]=am[E]end;an=an-32768;am[an+1]=nil end until aI==256;aD.buffer_size=an;return 0 end;local function a_(aD)local am,an,ab,ak,ax,ay,aU=aD.buffer,aD.buffer_size,aD.ReadBits,aD.ReadBytes,aD.ReaderBitlenLeft,aD.SkipToByteBoundary,aD.result_buffer;ay()local al=ab(16)if ax()<0 then return 2 end;local b0=ab(16)if ax()<0 then return 2 end;if al%256+b0%256~=255 then return-2 end;if(al-al%256)/256+(b0-b0%256)/256~=255 then return-2 end;an=ak(al,am,an)if an<0 then return 2 end;if an>=65536 then aU[#aU+1]=g(am,"",1,32768)for E=32769,an do am[E-32768]=am[E]end;an=an-32768;am[an+1]=nil end;aD.buffer_size=an;return 0 end;local function b1(aD)return aN(aD,z,x,7,D,B,5)end;local function b2(aD)local ab,ap=aD.ReadBits,aD.Decode;local b3=ab(5)+257;local b4=ab(5)+1;local b5=ab(4)+4;if b3>286 or b4>30 then return-3 end;local b6={}for E=1,b5 do local X=v[E]b6[X]=ab(3)end;local b7,b8,b9,ba=aE(b6,18,7)if b7~=0 then return-4 end;local aO={}local aR={}local au=0;while aub3+b4 then return-6 end;while aI>0 do aI=aI-1;if au Date: Fri, 13 Jan 2023 20:25:30 -0800 Subject: [PATCH 07/15] and now we minify the output --- .github/workflows/create-archives.yml | 2 ++ cc/computer/0/buildimgs.lua | 1 + cc/computer/0/startup.lua | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml index 693abd0..1c9f751 100644 --- a/.github/workflows/create-archives.yml +++ b/.github/workflows/create-archives.yml @@ -14,6 +14,8 @@ jobs: steps: - name: "checkout" uses: "actions/checkout@v3" + - name: "minify" + uses: "walksanatora/minify-lua" - name: "run cc" uses: "walksanatora/craftos-action@v1.0.4" with: diff --git a/cc/computer/0/buildimgs.lua b/cc/computer/0/buildimgs.lua index 2e8f20d..c754e2f 100644 --- a/cc/computer/0/buildimgs.lua +++ b/cc/computer/0/buildimgs.lua @@ -8,6 +8,7 @@ local extract_path = table.remove(opts,1) print("[build] extraction path "..extract_path) local files = opts +local verbosity = verbosity or 1 --to turn a folder into a table local function gen_disk(ph) diff --git a/cc/computer/0/startup.lua b/cc/computer/0/startup.lua index c8ab2bb..4f341a2 100644 --- a/cc/computer/0/startup.lua +++ b/cc/computer/0/startup.lua @@ -1,2 +1,2 @@ -shell.run("buildimgs output/yc yc/lib yc/youcube.lua") +shell.run("buildimgs output/yc '' yc/lib yc/youcube.lua") os.shutdown() \ No newline at end of file From cc5e56a1b013c5e35c2235b45b6dcce8517d7a4a Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 20:26:37 -0800 Subject: [PATCH 08/15] branch specifier --- .github/workflows/create-archives.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml index 1c9f751..d02ed88 100644 --- a/.github/workflows/create-archives.yml +++ b/.github/workflows/create-archives.yml @@ -15,7 +15,7 @@ jobs: - name: "checkout" uses: "actions/checkout@v3" - name: "minify" - uses: "walksanatora/minify-lua" + uses: "walksanatora/minify-lua@main" - name: "run cc" uses: "walksanatora/craftos-action@v1.0.4" with: From b51d2e1765545648f209bc66544afcd34f19ba09 Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 20:27:52 -0800 Subject: [PATCH 09/15] add the workflow to re-build --- .github/workflows/create-archives.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml index d02ed88..ce2ed4a 100644 --- a/.github/workflows/create-archives.yml +++ b/.github/workflows/create-archives.yml @@ -7,6 +7,7 @@ on: paths: - "src/**.lua" - "cc/**" + - ".github/workflows/create-archives.yml" jobs: build-archives: From e16a0abccbea6eef93321dfc6d4d6fdd556a54cd Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 20:28:36 -0800 Subject: [PATCH 10/15] swap the order --- .github/workflows/create-archives.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml index ce2ed4a..df15b5d 100644 --- a/.github/workflows/create-archives.yml +++ b/.github/workflows/create-archives.yml @@ -16,7 +16,7 @@ jobs: - name: "checkout" uses: "actions/checkout@v3" - name: "minify" - uses: "walksanatora/minify-lua@main" + uses: "walksanatora/lua-minify@main" - name: "run cc" uses: "walksanatora/craftos-action@v1.0.4" with: From 14891e90ca047a0d1da88a1d02c3449331f46aa6 Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 20:38:12 -0800 Subject: [PATCH 11/15] fix minify hopefully --- .github/workflows/create-archives.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml index df15b5d..788474d 100644 --- a/.github/workflows/create-archives.yml +++ b/.github/workflows/create-archives.yml @@ -17,6 +17,8 @@ jobs: uses: "actions/checkout@v3" - name: "minify" uses: "walksanatora/lua-minify@main" + with: + find: "src/" - name: "run cc" uses: "walksanatora/craftos-action@v1.0.4" with: From c90243702fdeb7eb7b32f88c9fa6d5bcd19ac754 Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 21:33:42 -0800 Subject: [PATCH 12/15] make it only match lua files --- .github/workflows/create-archives.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml index 788474d..0986c3b 100644 --- a/.github/workflows/create-archives.yml +++ b/.github/workflows/create-archives.yml @@ -18,7 +18,7 @@ jobs: - name: "minify" uses: "walksanatora/lua-minify@main" with: - find: "src/" + find: "src/ -name \"*.lua\"" - name: "run cc" uses: "walksanatora/craftos-action@v1.0.4" with: From 792f14eb37ed3b446a24c31dee00313d7419968f Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 21:53:19 -0800 Subject: [PATCH 13/15] it works on act, will it work remote --- .github/workflows/create-archives.yml | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml index 0986c3b..d1688ac 100644 --- a/.github/workflows/create-archives.yml +++ b/.github/workflows/create-archives.yml @@ -18,15 +18,20 @@ jobs: - name: "minify" uses: "walksanatora/lua-minify@main" with: - find: "src/ -name \"*.lua\"" - - name: "run cc" - uses: "walksanatora/craftos-action@v1.0.4" - with: - root: "cc" - timeout: "60" - - name: "upload-images" + find: "./src/ -name \"*.lua\"" + #- name: "run cc" + # uses: "walksanatora/craftos-action@v1.0.4" + # with: + # root: "cc" + # timeout: "60" + #- name: "upload-images" + # uses: "actions/upload-artifact@v3" + # with: + # name: "archives" + # path: "cc/computer/0/output/*" + - name: "upload-minified" uses: "actions/upload-artifact@v3" with: - name: "archives" - path: "cc/computer/0/output/*" - + name: "minified-src" + path: "src/" + \ No newline at end of file From c866c7943f807caa62dd536c5fdef8fe5c297c32 Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 21:54:51 -0800 Subject: [PATCH 14/15] i forgot to uncomment these while testing --- .github/workflows/create-archives.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/create-archives.yml b/.github/workflows/create-archives.yml index d1688ac..23af593 100644 --- a/.github/workflows/create-archives.yml +++ b/.github/workflows/create-archives.yml @@ -19,16 +19,16 @@ jobs: uses: "walksanatora/lua-minify@main" with: find: "./src/ -name \"*.lua\"" - #- name: "run cc" - # uses: "walksanatora/craftos-action@v1.0.4" - # with: - # root: "cc" - # timeout: "60" - #- name: "upload-images" - # uses: "actions/upload-artifact@v3" - # with: - # name: "archives" - # path: "cc/computer/0/output/*" + - name: "run cc" + uses: "walksanatora/craftos-action@v1.0.4" + with: + root: "cc" + timeout: "60" + - name: "upload-images" + uses: "actions/upload-artifact@v3" + with: + name: "archives" + path: "cc/computer/0/output/*" - name: "upload-minified" uses: "actions/upload-artifact@v3" with: From 883512aaefdc880bd491ad9c074248af331544d1 Mon Sep 17 00:00:00 2001 From: walksanatora Date: Fri, 13 Jan 2023 23:11:28 -0800 Subject: [PATCH 15/15] re run, the last test before i sleep --- cc/computer/0/rerun.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cc/computer/0/rerun.txt b/cc/computer/0/rerun.txt index b3e3c32..26fe3e5 100644 --- a/cc/computer/0/rerun.txt +++ b/cc/computer/0/rerun.txt @@ -1,2 +1,2 @@ changeme to run-run img deploy -rerun counter 3 \ No newline at end of file +rerun counter 4 \ No newline at end of file