Skip to content

Commit 73474dd

Browse files
committed
fix release
1 parent 1fffb52 commit 73474dd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/zip-code.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
- '*/*/*/*.rkt'
99
- '*/*/*/*.hs'
1010
- '*/*/*/*.pl'
11+
tags:
12+
- '*'
1113

1214
jobs:
1315
zip-and-upload:
@@ -30,7 +32,7 @@ jobs:
3032
draft: false
3133
prerelease: false
3234
release_name: ${{ steps.version.outputs.version }}
33-
tag_name: ${{ github.ref }}
35+
tag_name: Release ${{ github.ref }}
3436
env:
3537
GITHUB_TOKEN: ${{ github.token }}
3638
- name: Upload archive - Racket - lab 1 - skel

racket/intro/schelet/palindromes.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
;; în rest reprezentarea corespunde reprezentării matematice.
3535
;; num->base(0,b) = [ ] ; pt n=0
3636
;; num->base(n,b) = num->base(n div b, b) ++ [ n mod b ] ; pt n>0
37-
;; Implementați funcția corespunzătoare în Racket.
37+
;; Implementați funcția corespunzătoare în Racket.
3838

3939
(define (num->base n b)
4040
'your-code-here)

0 commit comments

Comments
 (0)