forked from vieter-v/vieter
				
			Merge pull request 'Some small fixes' (#234) from Chewing_Bever/vieter:fixes into dev
Reviewed-on: vieter/vieter#234main
						commit
						9dc8db4d54
					
				| 
						 | 
					@ -14,6 +14,7 @@ pipeline:
 | 
				
			||||||
    commands:
 | 
					    commands:
 | 
				
			||||||
      - mc alias set s3/ https://s3.rustybever.be "$S3_USERNAME" "$S3_PASSWORD"
 | 
					      - mc alias set s3/ https://s3.rustybever.be "$S3_USERNAME" "$S3_PASSWORD"
 | 
				
			||||||
      - mc cp -r "s3/vieter/commits/$CI_COMMIT_SHA" .
 | 
					      - mc cp -r "s3/vieter/commits/$CI_COMMIT_SHA" .
 | 
				
			||||||
 | 
					      - mv "$CI_COMMIT_SHA"/vieter-* .
 | 
				
			||||||
    when:
 | 
					    when:
 | 
				
			||||||
      event: tag
 | 
					      event: tag
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -23,9 +24,8 @@ pipeline:
 | 
				
			||||||
      - gitea_release_api_key
 | 
					      - gitea_release_api_key
 | 
				
			||||||
    settings:
 | 
					    settings:
 | 
				
			||||||
      base_url: https://git.rustybever.be
 | 
					      base_url: https://git.rustybever.be
 | 
				
			||||||
      files: ${CI_COMMIT_SHA}/*
 | 
					      files: vieter-*
 | 
				
			||||||
      checksum:
 | 
					      checksum:
 | 
				
			||||||
        - md5
 | 
					 | 
				
			||||||
        - sha256
 | 
					        - sha256
 | 
				
			||||||
      title: ${CI_COMMIT_TAG}
 | 
					      title: ${CI_COMMIT_TAG}
 | 
				
			||||||
    when:
 | 
					    when:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -29,6 +29,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 | 
				
			||||||
  updated builder image
 | 
					  updated builder image
 | 
				
			||||||
* Build logs now show commands being executed
 | 
					* Build logs now show commands being executed
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### Fixed
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					* `POST /api/logs` now correctly uses epoch timestamps instead of strings
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## [0.3.0-alpha.2](https://git.rustybever.be/vieter/vieter/src/tag/0.3.0-alpha.2)
 | 
					## [0.3.0-alpha.2](https://git.rustybever.be/vieter/vieter/src/tag/0.3.0-alpha.2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Added
 | 
					### Added
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -38,11 +38,6 @@ pub fn cmd() cli.Command {
 | 
				
			||||||
						description: 'Only return Git repos that publish to this repo.'
 | 
											description: 'Only return Git repos that publish to this repo.'
 | 
				
			||||||
						flag: cli.FlagType.string
 | 
											flag: cli.FlagType.string
 | 
				
			||||||
					},
 | 
										},
 | 
				
			||||||
					cli.Flag{
 | 
					 | 
				
			||||||
						name: 'arch'
 | 
					 | 
				
			||||||
						description: 'Only return repos enabled for this architecture.'
 | 
					 | 
				
			||||||
						flag: cli.FlagType.string
 | 
					 | 
				
			||||||
					},
 | 
					 | 
				
			||||||
				]
 | 
									]
 | 
				
			||||||
				execute: fn (cmd cli.Command) ? {
 | 
									execute: fn (cmd cli.Command) ? {
 | 
				
			||||||
					config_file := cmd.flags.get_string('config-file')?
 | 
										config_file := cmd.flags.get_string('config-file')?
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue