Skip to content

Commit

Permalink
update secret placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
cengelha committed Sep 8, 2023
1 parent afd9399 commit f3be462
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion libNOM.io/Platform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1197,7 +1197,7 @@ public void Backup(Container container)
var path = Path.Combine(Settings.Backup, name);

Directory.CreateDirectory(Settings.Backup);
using (var zipArchive = ZipFile.Open(path, ZipArchiveMode.Update))
using (var zipArchive = ZipFile.Open(path, ZipArchiveMode.Create))
{
_ = zipArchive.CreateEntryFromFile(container.DataFile.FullName, "data");
if (container.MetaFile?.Exists == true)
Expand Down
2 changes: 1 addition & 1 deletion libNOM.io/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions libNOM.io/Properties/Resources.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down Expand Up @@ -118,7 +118,7 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="STEAM_API_KEY" xml:space="preserve">
<value>#{STEAM_API_KEY}#</value>
<value>{{ secrets.STEAM_API_KEY }}</value>
<comment>https://steamcommunity.com/dev/apikey</comment>
</data>
</root>
</root>
2 changes: 1 addition & 1 deletion libNOM.test/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions libNOM.test/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,6 @@
<value>..\Resources\TESTSUITE_ARCHIVE.zip;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="TESTSUITE_PASSWORD" xml:space="preserve">
<value>#{TESTSUITE_PASSWORD}#</value>
<value>{{ secrets.TESTSUITE_PASSWORD }}</value>
</data>
</root>
</root>
Binary file modified libNOM.test/Resources/TESTSUITE_ARCHIVE.zip
Binary file not shown.

0 comments on commit f3be462

Please sign in to comment.